1. Packages
  2. Linode
  3. API Docs
  4. getInstances
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

linode.getInstances

Explore with Pulumi AI

linode logo
Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Provides information about Linode instances that match a set of filters.

    Example Usage

    Get information about all Linode instances with a certain label and tag:

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const my-instances = linode.getInstances({
        filters: [
            {
                name: "label",
                values: [
                    "my-label",
                    "my-other-label",
                ],
            },
            {
                name: "tags",
                values: ["my-tag"],
            },
        ],
    });
    export const instanceId = my_instances.then(my_instances => my_instances.instances?.[0]?.id);
    
    import pulumi
    import pulumi_linode as linode
    
    my_instances = linode.get_instances(filters=[
        linode.GetInstancesFilterArgs(
            name="label",
            values=[
                "my-label",
                "my-other-label",
            ],
        ),
        linode.GetInstancesFilterArgs(
            name="tags",
            values=["my-tag"],
        ),
    ])
    pulumi.export("instanceId", my_instances.instances[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		my_instances, err := linode.GetInstances(ctx, &linode.GetInstancesArgs{
    			Filters: []linode.GetInstancesFilter{
    				{
    					Name: "label",
    					Values: []string{
    						"my-label",
    						"my-other-label",
    					},
    				},
    				{
    					Name: "tags",
    					Values: []string{
    						"my-tag",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("instanceId", my_instances.Instances[0].Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var my_instances = Linode.GetInstances.Invoke(new()
        {
            Filters = new[]
            {
                new Linode.Inputs.GetInstancesFilterInputArgs
                {
                    Name = "label",
                    Values = new[]
                    {
                        "my-label",
                        "my-other-label",
                    },
                },
                new Linode.Inputs.GetInstancesFilterInputArgs
                {
                    Name = "tags",
                    Values = new[]
                    {
                        "my-tag",
                    },
                },
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["instanceId"] = my_instances.Apply(my_instances => my_instances.Apply(getInstancesResult => getInstancesResult.Instances[0]?.Id)),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetInstancesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var my-instances = LinodeFunctions.getInstances(GetInstancesArgs.builder()
                .filters(            
                    GetInstancesFilterArgs.builder()
                        .name("label")
                        .values(                    
                            "my-label",
                            "my-other-label")
                        .build(),
                    GetInstancesFilterArgs.builder()
                        .name("tags")
                        .values("my-tag")
                        .build())
                .build());
    
            ctx.export("instanceId", my_instances.instances()[0].id());
        }
    }
    
    variables:
      my-instances:
        fn::invoke:
          Function: linode:getInstances
          Arguments:
            filters:
              - name: label
                values:
                  - my-label
                  - my-other-label
              - name: tags
                values:
                  - my-tag
    outputs:
      instanceId: ${["my-instances"].instances[0].id}
    

    Get information about all Linode instances associated with the current token:

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const all-instances = linode.getInstances({});
    export const instanceIds = all_instances.then(all_instances => all_instances.instances.map(__item => __item.id));
    
    import pulumi
    import pulumi_linode as linode
    
    all_instances = linode.get_instances()
    pulumi.export("instanceIds", [__item.id for __item in all_instances.instances])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		all_instances, err := linode.GetInstances(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		var splat0 []*int
    		for _, val0 := range all_instances.Instances {
    			splat0 = append(splat0, val0.Id)
    		}
    		ctx.Export("instanceIds", splat0)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var all_instances = Linode.GetInstances.Invoke();
    
        return new Dictionary<string, object?>
        {
            ["instanceIds"] = all_instances.Apply(all_instances => all_instances.Apply(getInstancesResult => getInstancesResult.Instances).Select(__item => __item.Id).ToList()),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetInstancesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var all-instances = LinodeFunctions.getInstances();
    
            ctx.export("instanceIds", all_instances.instances().stream().map(element -> element.id()).collect(toList()));
        }
    }
    
    Coming soon!```
    </pulumi-choosable>
    </div>
    
    
    ## Filterable Fields
    
    * `group`
    
    * `id`
    
    * `image`
    
    * `label`
    
    * `region`
    
    * `status`
    
    * `tags`
    
    * `type`
    
    * `watchdog_enabled`
    
    
    
    ## Using getInstances {#using}
    
    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.
    
    <div>
    <pulumi-chooser type="language" options="typescript,python,go,csharp,java,yaml"></pulumi-chooser>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <div class="highlight"
    ><pre class="chroma"><code class="language-typescript" data-lang="typescript"
    ><span class="k">function </span>getInstances<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetInstancesArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Promise&lt;<span class="nx"><a href="#result">GetInstancesResult</a></span>></span
    ><span class="k">
    function </span>getInstancesOutput<span class="p">(</span><span class="nx">args</span><span class="p">:</span> <span class="nx">GetInstancesOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p">?:</span> <span class="nx"><a href="/docs/reference/pkg/nodejs/pulumi/pulumi/#InvokeOptions">InvokeOptions</a></span><span class="p">): Output&lt;<span class="nx"><a href="#result">GetInstancesResult</a></span>></span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="python">
    <div class="highlight"><pre class="chroma"><code class="language-python" data-lang="python"
    ><span class="k">def </span>get_instances<span class="p">(</span><span class="nx">filters</span><span class="p">:</span> <span class="nx">Optional[Sequence[GetInstancesFilter]]</span> = None<span class="p">,</span>
                      <span class="nx">order</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
                      <span class="nx">order_by</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
                      <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>GetInstancesResult</span
    ><span class="k">
    def </span>get_instances_output<span class="p">(</span><span class="nx">filters</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[Sequence[pulumi.Input[GetInstancesFilterArgs]]]]</span> = None<span class="p">,</span>
                      <span class="nx">order</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[str]]</span> = None<span class="p">,</span>
                      <span class="nx">order_by</span><span class="p">:</span> <span class="nx">Optional[pulumi.Input[str]]</span> = None<span class="p">,</span>
                      <span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.InvokeOptions">Optional[InvokeOptions]</a></span> = None<span class="p">) -&gt;</span> <span>Output[GetInstancesResult]</span
    ></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="go">
    <div class="highlight"><pre class="chroma"><code class="language-go" data-lang="go"
    ><span class="k">func </span>GetInstances<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">GetInstancesArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) (*<span class="nx"><a href="#result">GetInstancesResult</a></span>, error)</span
    ><span class="k">
    func </span>GetInstancesOutput<span class="p">(</span><span class="nx">ctx</span><span class="p"> *</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#Context">Context</a></span><span class="p">,</span> <span class="nx">args</span><span class="p"> *</span><span class="nx">GetInstancesOutputArgs</span><span class="p">,</span> <span class="nx">opts</span><span class="p"> ...</span><span class="nx"><a href="https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3/go/pulumi?tab=doc#InvokeOption">InvokeOption</a></span><span class="p">) GetInstancesResultOutput</span
    ></code></pre></div>
    
    &gt; Note: This function is named `GetInstances` in the Go SDK.
    
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <div class="highlight"><pre class="chroma"><code class="language-csharp" data-lang="csharp"><span class="k">public static class </span><span class="nx">GetInstances </span><span class="p">
    {</span><span class="k">
        public static </span>Task&lt;<span class="nx"><a href="#result">GetInstancesResult</a></span>> <span class="p">InvokeAsync(</span><span class="nx">GetInstancesArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="k">
        public static </span>Output&lt;<span class="nx"><a href="#result">GetInstancesResult</a></span>> <span class="p">Invoke(</span><span class="nx">GetInstancesInvokeArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx"><a href="/docs/reference/pkg/dotnet/Pulumi/Pulumi.InvokeOptions.html">InvokeOptions</a></span><span class="p">? </span><span class="nx">opts = null<span class="p">)</span><span class="p">
    }</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="java">
    <div class="highlight"><pre class="chroma"><code class="language-java" data-lang="java"><span class="k">public static CompletableFuture&lt;<span class="nx"><a href="#result">GetInstancesResult</a></span>> </span>getInstances<span class="p">(</span><span class="nx">GetInstancesArgs</span><span class="p"> </span><span class="nx">args<span class="p">,</span> <span class="nx">InvokeOptions</span><span class="p"> </span><span class="nx">options<span class="p">)</span>
    <span class="c">// Output-based functions aren't available in Java yet</span>
    </code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <div class="highlight"><pre class="chroma"><code class="language-yaml" data-lang="yaml"><span class="k">fn::invoke:</span>
    <span class="k">&nbsp;&nbsp;function:</span> linode:index/getInstances:getInstances
    <span class="k">&nbsp;&nbsp;arguments:</span>
    <span class="c">&nbsp;&nbsp;&nbsp;&nbsp;# arguments dictionary</span></code></pre></div>
    </pulumi-choosable>
    </div>
    
    
    
    The following arguments are supported:
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_csharp" style="color: inherit; text-decoration: inherit;">Filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Get<wbr>Instances<wbr>Filter&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_csharp" style="color: inherit; text-decoration: inherit;">Order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="orderby_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_csharp" style="color: inherit; text-decoration: inherit;">Order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_go" style="color: inherit; text-decoration: inherit;">Filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">[]Get<wbr>Instances<wbr>Filter</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_go" style="color: inherit; text-decoration: inherit;">Order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="orderby_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_go" style="color: inherit; text-decoration: inherit;">Order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_java" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Get<wbr>Instances<wbr>Filter&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_java" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="orderby_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_java" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_nodejs" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">Get<wbr>Instances<wbr>Filter[]</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_nodejs" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="orderby_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_nodejs" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_python" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">Sequence[Get<wbr>Instances<wbr>Filter]</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_python" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="order_by_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_by_python" style="color: inherit; text-decoration: inherit;">order_<wbr>by</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-optional"
                title="Optional">
            <span id="filters_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_yaml" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-optional"
                title="Optional">
            <span id="order_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_yaml" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The order in which results should be returned. (<code>asc</code>, <code>desc</code>; default <code>asc</code>)</dd><dt class="property-optional"
                title="Optional">
            <span id="orderby_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_yaml" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The attribute to order the results by. See the Filterable Fields section for a list of valid fields.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## getInstances Result {#result}
    
    The following output properties are available:
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_csharp" style="color: inherit; text-decoration: inherit;">Instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">List&lt;Get<wbr>Instances<wbr>Instance&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_csharp" style="color: inherit; text-decoration: inherit;">Filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Get<wbr>Instances<wbr>Filter&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_csharp" style="color: inherit; text-decoration: inherit;">Order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="orderby_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_csharp" style="color: inherit; text-decoration: inherit;">Order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_go" style="color: inherit; text-decoration: inherit;">Instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">[]Get<wbr>Instances<wbr>Instance</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_go" style="color: inherit; text-decoration: inherit;">Filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">[]Get<wbr>Instances<wbr>Filter</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_go" style="color: inherit; text-decoration: inherit;">Order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="orderby_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_go" style="color: inherit; text-decoration: inherit;">Order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_java" style="color: inherit; text-decoration: inherit;">instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">List&lt;Get<wbr>Instances<wbr>Instance&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_java" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Get<wbr>Instances<wbr>Filter&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_java" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="orderby_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_java" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_nodejs" style="color: inherit; text-decoration: inherit;">instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">Get<wbr>Instances<wbr>Instance[]</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_nodejs" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">Get<wbr>Instances<wbr>Filter[]</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_nodejs" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="orderby_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_nodejs" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_python" style="color: inherit; text-decoration: inherit;">instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">Sequence[Get<wbr>Instances<wbr>Instance]</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_python" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">Sequence[Get<wbr>Instances<wbr>Filter]</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_python" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_by_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_by_python" style="color: inherit; text-decoration: inherit;">order_<wbr>by</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-"
                title="">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The provider-assigned unique ID for this managed resource.</dd><dt class="property-"
                title="">
            <span id="instances_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#instances_yaml" style="color: inherit; text-decoration: inherit;">instances</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstance">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="filters_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filters_yaml" style="color: inherit; text-decoration: inherit;">filters</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesfilter">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="order_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#order_yaml" style="color: inherit; text-decoration: inherit;">order</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd><dt class="property-"
                title="">
            <span id="orderby_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#orderby_yaml" style="color: inherit; text-decoration: inherit;">order<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    ## Supporting Types
    
    
    <h4 id="getinstancesfilter">Get<wbr>Instances<wbr>Filter</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_csharp" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_csharp" style="color: inherit; text-decoration: inherit;">Values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="matchby_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#matchby_csharp" style="color: inherit; text-decoration: inherit;">Match<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_go" style="color: inherit; text-decoration: inherit;">Name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_go" style="color: inherit; text-decoration: inherit;">Values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="matchby_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#matchby_go" style="color: inherit; text-decoration: inherit;">Match<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_java" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_java" style="color: inherit; text-decoration: inherit;">values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="matchby_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#matchby_java" style="color: inherit; text-decoration: inherit;">match<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_nodejs" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_nodejs" style="color: inherit; text-decoration: inherit;">values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="matchby_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#matchby_nodejs" style="color: inherit; text-decoration: inherit;">match<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_python" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_python" style="color: inherit; text-decoration: inherit;">values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="match_by_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#match_by_python" style="color: inherit; text-decoration: inherit;">match_<wbr>by</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="name_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#name_yaml" style="color: inherit; text-decoration: inherit;">name</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.</dd><dt class="property-required"
                title="Required">
            <span id="values_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#values_yaml" style="color: inherit; text-decoration: inherit;">values</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of values for the filter to allow. These values should all be in string form.</dd><dt class="property-optional"
                title="Optional">
            <span id="matchby_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#matchby_yaml" style="color: inherit; text-decoration: inherit;">match<wbr>By</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The method to match the field by. (<code>exact</code>, <code>regex</code>, <code>substring</code>; default <code>exact</code>)</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstance">Get<wbr>Instances<wbr>Instance</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_csharp" style="color: inherit; text-decoration: inherit;">Alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_csharp" style="color: inherit; text-decoration: inherit;">Backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Backup&gt;</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="bootconfiglabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#bootconfiglabel_csharp" style="color: inherit; text-decoration: inherit;">Boot<wbr>Config<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_csharp" style="color: inherit; text-decoration: inherit;">Configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config&gt;</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_csharp" style="color: inherit; text-decoration: inherit;">Disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Disk&gt;</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_csharp" style="color: inherit; text-decoration: inherit;">Group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="hasuserdata_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hasuserdata_csharp" style="color: inherit; text-decoration: inherit;">Has<wbr>User<wbr>Data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="hostuuid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hostuuid_csharp" style="color: inherit; text-decoration: inherit;">Host<wbr>Uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_csharp" style="color: inherit; text-decoration: inherit;">Image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_csharp" style="color: inherit; text-decoration: inherit;">Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_csharp" style="color: inherit; text-decoration: inherit;">Ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_csharp" style="color: inherit; text-decoration: inherit;">Ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_csharp" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="privateipaddress_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#privateipaddress_csharp" style="color: inherit; text-decoration: inherit;">Private<wbr>Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_csharp" style="color: inherit; text-decoration: inherit;">Region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_csharp" style="color: inherit; text-decoration: inherit;">Specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Spec&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_csharp" style="color: inherit; text-decoration: inherit;">Status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swapsize_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swapsize_csharp" style="color: inherit; text-decoration: inherit;">Swap<wbr>Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_csharp" style="color: inherit; text-decoration: inherit;">Tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_csharp" style="color: inherit; text-decoration: inherit;">Type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdogenabled_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdogenabled_csharp" style="color: inherit; text-decoration: inherit;">Watchdog<wbr>Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_go" style="color: inherit; text-decoration: inherit;">Alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_go" style="color: inherit; text-decoration: inherit;">Backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">[]Get<wbr>Instances<wbr>Instance<wbr>Backup</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="bootconfiglabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#bootconfiglabel_go" style="color: inherit; text-decoration: inherit;">Boot<wbr>Config<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_go" style="color: inherit; text-decoration: inherit;">Configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">[]Get<wbr>Instances<wbr>Instance<wbr>Config</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_go" style="color: inherit; text-decoration: inherit;">Disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">[]Get<wbr>Instances<wbr>Instance<wbr>Disk</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_go" style="color: inherit; text-decoration: inherit;">Group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="hasuserdata_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hasuserdata_go" style="color: inherit; text-decoration: inherit;">Has<wbr>User<wbr>Data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="hostuuid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hostuuid_go" style="color: inherit; text-decoration: inherit;">Host<wbr>Uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_go" style="color: inherit; text-decoration: inherit;">Image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_go" style="color: inherit; text-decoration: inherit;">Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_go" style="color: inherit; text-decoration: inherit;">Ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_go" style="color: inherit; text-decoration: inherit;">Ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_go" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="privateipaddress_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#privateipaddress_go" style="color: inherit; text-decoration: inherit;">Private<wbr>Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_go" style="color: inherit; text-decoration: inherit;">Region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_go" style="color: inherit; text-decoration: inherit;">Specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">[]Get<wbr>Instances<wbr>Instance<wbr>Spec</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_go" style="color: inherit; text-decoration: inherit;">Status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swapsize_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swapsize_go" style="color: inherit; text-decoration: inherit;">Swap<wbr>Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_go" style="color: inherit; text-decoration: inherit;">Tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_go" style="color: inherit; text-decoration: inherit;">Type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdogenabled_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdogenabled_go" style="color: inherit; text-decoration: inherit;">Watchdog<wbr>Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_java" style="color: inherit; text-decoration: inherit;">alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_java" style="color: inherit; text-decoration: inherit;">backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Backup&gt;</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="bootconfiglabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#bootconfiglabel_java" style="color: inherit; text-decoration: inherit;">boot<wbr>Config<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_java" style="color: inherit; text-decoration: inherit;">configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config&gt;</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_java" style="color: inherit; text-decoration: inherit;">disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Disk&gt;</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_java" style="color: inherit; text-decoration: inherit;">group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="hasuserdata_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hasuserdata_java" style="color: inherit; text-decoration: inherit;">has<wbr>User<wbr>Data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="hostuuid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hostuuid_java" style="color: inherit; text-decoration: inherit;">host<wbr>Uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_java" style="color: inherit; text-decoration: inherit;">image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_java" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_java" style="color: inherit; text-decoration: inherit;">ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_java" style="color: inherit; text-decoration: inherit;">ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_java" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="privateipaddress_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#privateipaddress_java" style="color: inherit; text-decoration: inherit;">private<wbr>Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_java" style="color: inherit; text-decoration: inherit;">region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_java" style="color: inherit; text-decoration: inherit;">specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Spec&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_java" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swapsize_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swapsize_java" style="color: inherit; text-decoration: inherit;">swap<wbr>Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_java" style="color: inherit; text-decoration: inherit;">tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_java" style="color: inherit; text-decoration: inherit;">type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdogenabled_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdogenabled_java" style="color: inherit; text-decoration: inherit;">watchdog<wbr>Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_nodejs" style="color: inherit; text-decoration: inherit;">alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_nodejs" style="color: inherit; text-decoration: inherit;">backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">Get<wbr>Instances<wbr>Instance<wbr>Backup[]</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="bootconfiglabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#bootconfiglabel_nodejs" style="color: inherit; text-decoration: inherit;">boot<wbr>Config<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_nodejs" style="color: inherit; text-decoration: inherit;">configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">Get<wbr>Instances<wbr>Instance<wbr>Config[]</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_nodejs" style="color: inherit; text-decoration: inherit;">disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">Get<wbr>Instances<wbr>Instance<wbr>Disk[]</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_nodejs" style="color: inherit; text-decoration: inherit;">group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="hasuserdata_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hasuserdata_nodejs" style="color: inherit; text-decoration: inherit;">has<wbr>User<wbr>Data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="hostuuid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hostuuid_nodejs" style="color: inherit; text-decoration: inherit;">host<wbr>Uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_nodejs" style="color: inherit; text-decoration: inherit;">image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_nodejs" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_nodejs" style="color: inherit; text-decoration: inherit;">ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_nodejs" style="color: inherit; text-decoration: inherit;">ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_nodejs" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="privateipaddress_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#privateipaddress_nodejs" style="color: inherit; text-decoration: inherit;">private<wbr>Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_nodejs" style="color: inherit; text-decoration: inherit;">region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_nodejs" style="color: inherit; text-decoration: inherit;">specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">Get<wbr>Instances<wbr>Instance<wbr>Spec[]</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_nodejs" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swapsize_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swapsize_nodejs" style="color: inherit; text-decoration: inherit;">swap<wbr>Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_nodejs" style="color: inherit; text-decoration: inherit;">tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_nodejs" style="color: inherit; text-decoration: inherit;">type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdogenabled_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdogenabled_nodejs" style="color: inherit; text-decoration: inherit;">watchdog<wbr>Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_python" style="color: inherit; text-decoration: inherit;">alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_python" style="color: inherit; text-decoration: inherit;">backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Backup]</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="boot_config_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#boot_config_label_python" style="color: inherit; text-decoration: inherit;">boot_<wbr>config_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_python" style="color: inherit; text-decoration: inherit;">configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config]</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_python" style="color: inherit; text-decoration: inherit;">disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Disk]</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_python" style="color: inherit; text-decoration: inherit;">group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="has_user_data_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#has_user_data_python" style="color: inherit; text-decoration: inherit;">has_<wbr>user_<wbr>data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="host_uuid_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#host_uuid_python" style="color: inherit; text-decoration: inherit;">host_<wbr>uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_python" style="color: inherit; text-decoration: inherit;">image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ip_address_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ip_address_python" style="color: inherit; text-decoration: inherit;">ip_<wbr>address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_python" style="color: inherit; text-decoration: inherit;">ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_python" style="color: inherit; text-decoration: inherit;">ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_python" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="private_ip_address_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#private_ip_address_python" style="color: inherit; text-decoration: inherit;">private_<wbr>ip_<wbr>address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_python" style="color: inherit; text-decoration: inherit;">region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_python" style="color: inherit; text-decoration: inherit;">specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Spec]</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_python" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swap_size_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swap_size_python" style="color: inherit; text-decoration: inherit;">swap_<wbr>size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_python" style="color: inherit; text-decoration: inherit;">tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_python" style="color: inherit; text-decoration: inherit;">type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdog_enabled_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdog_enabled_python" style="color: inherit; text-decoration: inherit;">watchdog_<wbr>enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="alerts_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#alerts_yaml" style="color: inherit; text-decoration: inherit;">alerts</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancealerts">Property Map</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="backups_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#backups_yaml" style="color: inherit; text-decoration: inherit;">backups</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackup">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Information about this Linode's backups status.</dd><dt class="property-required"
                title="Required">
            <span id="bootconfiglabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#bootconfiglabel_yaml" style="color: inherit; text-decoration: inherit;">boot<wbr>Config<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Label of the Instance Config that should be used to boot the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="configs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#configs_yaml" style="color: inherit; text-decoration: inherit;">configs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfig">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Configuration profiles define the VM settings and boot behavior of the Linode Instance.</dd><dt class="property-required"
                title="Required">
            <span id="disks_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disks_yaml" style="color: inherit; text-decoration: inherit;">disks</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancedisk">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Disks associated with this Linode.</dd><dt class="property-required"
                title="Required">
            <span id="group_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#group_yaml" style="color: inherit; text-decoration: inherit;">group</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The display group of the Linode instance.</dd><dt class="property-required"
                title="Required">
            <span id="hasuserdata_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hasuserdata_yaml" style="color: inherit; text-decoration: inherit;">has<wbr>User<wbr>Data</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this Instance was created with user-data.</dd><dt class="property-required"
                title="Required">
            <span id="hostuuid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hostuuid_yaml" style="color: inherit; text-decoration: inherit;">host<wbr>Uuid</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Linode’s host machine, as a UUID.</dd><dt class="property-required"
                title="Required">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="image_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#image_yaml" style="color: inherit; text-decoration: inherit;">image</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with <code>private/</code>. See <a href="https://api.linode.com/v4/images">images</a> for more information on the Images available for you to use. Examples are <code>linode/debian12</code>, <code>linode/fedora39</code>, <code>linode/ubuntu22.04</code>, <code>linode/arch</code>, and <code>private/12345</code>. See all images <a href="https://api.linode.com/v4/linode/images">here</a> (Requires a personal access token; docs <a href="https://developers.linode.com/api/v4/images">here</a>). <em>This value can not be imported.</em> <em>Changing <code>image</code> forces the creation of a new Linode Instance.</em></dd><dt class="property-required"
                title="Required">
            <span id="ipaddress_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipaddress_yaml" style="color: inherit; text-decoration: inherit;">ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>A string containing the Linode's public IP address.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4s_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4s_yaml" style="color: inherit; text-decoration: inherit;">ipv4s</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="ipv6_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv6_yaml" style="color: inherit; text-decoration: inherit;">ipv6</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared.  The prefix (<code>/64</code>) is included in this attribute.</dd><dt class="property-required"
                title="Required">
            <span id="label_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_yaml" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="privateipaddress_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#privateipaddress_yaml" style="color: inherit; text-decoration: inherit;">private<wbr>Ip<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Linode's Private IPv4 Address, if enabled.  The regional private IP address range, 192.168.128.0/17, is shared by all Linode Instances in a region.</dd><dt class="property-required"
                title="Required">
            <span id="region_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#region_yaml" style="color: inherit; text-decoration: inherit;">region</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This is the location where the Linode is deployed. Examples are <code>&quot;us-east&quot;</code>, <code>&quot;us-west&quot;</code>, <code>&quot;ap-south&quot;</code>, etc. See all regions <a href="https://api.linode.com/v4/regions">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="specs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#specs_yaml" style="color: inherit; text-decoration: inherit;">specs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancespec">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd></dd><dt class="property-required"
                title="Required">
            <span id="status_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#status_yaml" style="color: inherit; text-decoration: inherit;">status</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The status of the instance, indicating the current readiness state. (<code>running</code>, <code>offline</code>, ...)</dd><dt class="property-required"
                title="Required">
            <span id="swapsize_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#swapsize_yaml" style="color: inherit; text-decoration: inherit;">swap<wbr>Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>When deploying from an Image, this field is optional with a Linode API default of 512mb, otherwise it is ignored. This is used to set the swap disk size for the newly-created Linode.</dd><dt class="property-required"
                title="Required">
            <span id="tags_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#tags_yaml" style="color: inherit; text-decoration: inherit;">tags</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.</dd><dt class="property-required"
                title="Required">
            <span id="type_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#type_yaml" style="color: inherit; text-decoration: inherit;">type</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are <code>&quot;g6-nanode-1&quot;</code>, <code>&quot;g6-standard-2&quot;</code>, <code>&quot;g6-highmem-16&quot;</code>, <code>&quot;g6-dedicated-16&quot;</code>, etc. See all types <a href="https://api.linode.com/v4/linode/types">here</a>.</dd><dt class="property-required"
                title="Required">
            <span id="watchdogenabled_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#watchdogenabled_yaml" style="color: inherit; text-decoration: inherit;">watchdog<wbr>Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>The watchdog, named Lassie, is a Shutdown Watchdog that monitors your Linode and will reboot it if it powers off unexpectedly. It works by issuing a boot job when your Linode powers off without a shutdown job being responsible. To prevent a loop, Lassie will give up if there have been more than 5 boot jobs issued within 15 minutes.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstancealerts">Get<wbr>Instances<wbr>Instance<wbr>Alerts</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_csharp" style="color: inherit; text-decoration: inherit;">Cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_csharp" style="color: inherit; text-decoration: inherit;">Io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkin_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkin_csharp" style="color: inherit; text-decoration: inherit;">Network<wbr>In</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkout_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkout_csharp" style="color: inherit; text-decoration: inherit;">Network<wbr>Out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transferquota_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transferquota_csharp" style="color: inherit; text-decoration: inherit;">Transfer<wbr>Quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_go" style="color: inherit; text-decoration: inherit;">Cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_go" style="color: inherit; text-decoration: inherit;">Io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkin_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkin_go" style="color: inherit; text-decoration: inherit;">Network<wbr>In</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkout_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkout_go" style="color: inherit; text-decoration: inherit;">Network<wbr>Out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transferquota_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transferquota_go" style="color: inherit; text-decoration: inherit;">Transfer<wbr>Quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_java" style="color: inherit; text-decoration: inherit;">cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_java" style="color: inherit; text-decoration: inherit;">io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkin_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkin_java" style="color: inherit; text-decoration: inherit;">network<wbr>In</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkout_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkout_java" style="color: inherit; text-decoration: inherit;">network<wbr>Out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transferquota_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transferquota_java" style="color: inherit; text-decoration: inherit;">transfer<wbr>Quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_nodejs" style="color: inherit; text-decoration: inherit;">cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_nodejs" style="color: inherit; text-decoration: inherit;">io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkin_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkin_nodejs" style="color: inherit; text-decoration: inherit;">network<wbr>In</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkout_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkout_nodejs" style="color: inherit; text-decoration: inherit;">network<wbr>Out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transferquota_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transferquota_nodejs" style="color: inherit; text-decoration: inherit;">transfer<wbr>Quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_python" style="color: inherit; text-decoration: inherit;">cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_python" style="color: inherit; text-decoration: inherit;">io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="network_in_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_in_python" style="color: inherit; text-decoration: inherit;">network_<wbr>in</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="network_out_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_out_python" style="color: inherit; text-decoration: inherit;">network_<wbr>out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_quota_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_quota_python" style="color: inherit; text-decoration: inherit;">transfer_<wbr>quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="cpu_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#cpu_yaml" style="color: inherit; text-decoration: inherit;">cpu</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The percentage of CPU usage required to trigger an alert. If the average CPU usage over two hours exceeds this value, we'll Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.send you an alert. If this is set to 0, the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="io_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#io_yaml" style="color: inherit; text-decoration: inherit;">io</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of disk IO operation per second required to trigger an alert. If the average disk IO over two hours exceeds this value, we'll send you an alert. If set to 0, this alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkin_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkin_yaml" style="color: inherit; text-decoration: inherit;">network<wbr>In</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of incoming traffic, in Mbit/s, required to trigger an alert. If the average incoming traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="networkout_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#networkout_yaml" style="color: inherit; text-decoration: inherit;">network<wbr>Out</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of outbound traffic, in Mbit/s, required to trigger an alert. If the average outbound traffic over two hours exceeds this value, we'll send you an alert. If this is set to 0 (zero), the alert is disabled.</dd><dt class="property-required"
                title="Required">
            <span id="transferquota_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transferquota_yaml" style="color: inherit; text-decoration: inherit;">transfer<wbr>Quota</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The percentage of network transfer that may be used before an alert is triggered. When this value is exceeded, we'll alert you. If this is set to 0 (zero), the alert is disabled.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstancebackup">Get<wbr>Instances<wbr>Instance<wbr>Backup</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_csharp" style="color: inherit; text-decoration: inherit;">Available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_csharp" style="color: inherit; text-decoration: inherit;">Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_csharp" style="color: inherit; text-decoration: inherit;">Schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule&gt;</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_go" style="color: inherit; text-decoration: inherit;">Available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_go" style="color: inherit; text-decoration: inherit;">Enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_go" style="color: inherit; text-decoration: inherit;">Schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">[]Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_java" style="color: inherit; text-decoration: inherit;">available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_java" style="color: inherit; text-decoration: inherit;">enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_java" style="color: inherit; text-decoration: inherit;">schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule&gt;</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_nodejs" style="color: inherit; text-decoration: inherit;">available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_nodejs" style="color: inherit; text-decoration: inherit;">enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_nodejs" style="color: inherit; text-decoration: inherit;">schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule[]</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_python" style="color: inherit; text-decoration: inherit;">available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_python" style="color: inherit; text-decoration: inherit;">enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_python" style="color: inherit; text-decoration: inherit;">schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule]</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="available_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#available_yaml" style="color: inherit; text-decoration: inherit;">available</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this Backup is available for restoration.</dd><dt class="property-required"
                title="Required">
            <span id="enabled_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#enabled_yaml" style="color: inherit; text-decoration: inherit;">enabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>If this Linode has the Backup service enabled.</dd><dt class="property-required"
                title="Required">
            <span id="schedules_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#schedules_yaml" style="color: inherit; text-decoration: inherit;">schedules</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstancebackupschedule">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd></dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstancebackupschedule">Get<wbr>Instances<wbr>Instance<wbr>Backup<wbr>Schedule</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_csharp" style="color: inherit; text-decoration: inherit;">Day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_csharp" style="color: inherit; text-decoration: inherit;">Window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_go" style="color: inherit; text-decoration: inherit;">Day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_go" style="color: inherit; text-decoration: inherit;">Window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_java" style="color: inherit; text-decoration: inherit;">day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_java" style="color: inherit; text-decoration: inherit;">window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_nodejs" style="color: inherit; text-decoration: inherit;">day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_nodejs" style="color: inherit; text-decoration: inherit;">window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_python" style="color: inherit; text-decoration: inherit;">day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_python" style="color: inherit; text-decoration: inherit;">window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="day_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#day_yaml" style="color: inherit; text-decoration: inherit;">day</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The day of the week that your Linode's weekly Backup is taken. If not set manually, a day will be chosen for you. Backups are taken every day, but backups taken on this day are preferred when selecting backups to retain for a longer period.  If not set manually, then when backups are initially enabled, this may come back as &quot;Scheduling&quot; until the day is automatically selected.</dd><dt class="property-required"
                title="Required">
            <span id="window_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#window_yaml" style="color: inherit; text-decoration: inherit;">window</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The window ('W0'-'W22') in which your backups will be taken, in UTC. A backups window is a two-hour span of time in which the backup may occur. For example, 'W10' indicates that your backups should be taken between 10:00 and 12:00. If you do not choose a backup window, one will be selected for you automatically.  If not set manually, when backups are initially enabled this may come back as Scheduling until the window is automatically selected.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfig">Get<wbr>Instances<wbr>Instance<wbr>Config</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_csharp" style="color: inherit; text-decoration: inherit;">Comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_csharp" style="color: inherit; text-decoration: inherit;">Devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device&gt;</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_csharp" style="color: inherit; text-decoration: inherit;">Helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper&gt;</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_csharp" style="color: inherit; text-decoration: inherit;">Interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface&gt;</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_csharp" style="color: inherit; text-decoration: inherit;">Kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_csharp" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memorylimit_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memorylimit_csharp" style="color: inherit; text-decoration: inherit;">Memory<wbr>Limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="rootdevice_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#rootdevice_csharp" style="color: inherit; text-decoration: inherit;">Root<wbr>Device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="runlevel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#runlevel_csharp" style="color: inherit; text-decoration: inherit;">Run<wbr>Level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virtmode_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtmode_csharp" style="color: inherit; text-decoration: inherit;">Virt<wbr>Mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_go" style="color: inherit; text-decoration: inherit;">Comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_go" style="color: inherit; text-decoration: inherit;">Devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_go" style="color: inherit; text-decoration: inherit;">Helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_go" style="color: inherit; text-decoration: inherit;">Interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_go" style="color: inherit; text-decoration: inherit;">Kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_go" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memorylimit_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memorylimit_go" style="color: inherit; text-decoration: inherit;">Memory<wbr>Limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="rootdevice_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#rootdevice_go" style="color: inherit; text-decoration: inherit;">Root<wbr>Device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="runlevel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#runlevel_go" style="color: inherit; text-decoration: inherit;">Run<wbr>Level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virtmode_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtmode_go" style="color: inherit; text-decoration: inherit;">Virt<wbr>Mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_java" style="color: inherit; text-decoration: inherit;">comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_java" style="color: inherit; text-decoration: inherit;">devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device&gt;</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_java" style="color: inherit; text-decoration: inherit;">helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper&gt;</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_java" style="color: inherit; text-decoration: inherit;">interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface&gt;</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_java" style="color: inherit; text-decoration: inherit;">kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_java" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memorylimit_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memorylimit_java" style="color: inherit; text-decoration: inherit;">memory<wbr>Limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="rootdevice_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#rootdevice_java" style="color: inherit; text-decoration: inherit;">root<wbr>Device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="runlevel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#runlevel_java" style="color: inherit; text-decoration: inherit;">run<wbr>Level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virtmode_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtmode_java" style="color: inherit; text-decoration: inherit;">virt<wbr>Mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_nodejs" style="color: inherit; text-decoration: inherit;">comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_nodejs" style="color: inherit; text-decoration: inherit;">devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device[]</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_nodejs" style="color: inherit; text-decoration: inherit;">helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper[]</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_nodejs" style="color: inherit; text-decoration: inherit;">interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface[]</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_nodejs" style="color: inherit; text-decoration: inherit;">kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_nodejs" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memorylimit_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memorylimit_nodejs" style="color: inherit; text-decoration: inherit;">memory<wbr>Limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="rootdevice_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#rootdevice_nodejs" style="color: inherit; text-decoration: inherit;">root<wbr>Device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="runlevel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#runlevel_nodejs" style="color: inherit; text-decoration: inherit;">run<wbr>Level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virtmode_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtmode_nodejs" style="color: inherit; text-decoration: inherit;">virt<wbr>Mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_python" style="color: inherit; text-decoration: inherit;">comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_python" style="color: inherit; text-decoration: inherit;">devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device]</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_python" style="color: inherit; text-decoration: inherit;">helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper]</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_python" style="color: inherit; text-decoration: inherit;">interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface]</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_python" style="color: inherit; text-decoration: inherit;">kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_python" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memory_limit_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_limit_python" style="color: inherit; text-decoration: inherit;">memory_<wbr>limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="root_device_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#root_device_python" style="color: inherit; text-decoration: inherit;">root_<wbr>device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="run_level_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#run_level_python" style="color: inherit; text-decoration: inherit;">run_<wbr>level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virt_mode_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virt_mode_python" style="color: inherit; text-decoration: inherit;">virt_<wbr>mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="comments_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#comments_yaml" style="color: inherit; text-decoration: inherit;">comments</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Arbitrary user comments about this <code>config</code>.</dd><dt class="property-required"
                title="Required">
            <span id="devices_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devices_yaml" style="color: inherit; text-decoration: inherit;">devices</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevice">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>A list of <code>disk</code> or <code>volume</code> attachments for this <code>config</code>.  If the <code>boot_config_label</code> omits a <code>devices</code> block, the Linode will not be booted.</dd><dt class="property-required"
                title="Required">
            <span id="helpers_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#helpers_yaml" style="color: inherit; text-decoration: inherit;">helpers</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfighelper">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Helpers enabled when booting to this Linode Config.</dd><dt class="property-required"
                title="Required">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="interfaces_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#interfaces_yaml" style="color: inherit; text-decoration: inherit;">interfaces</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterface">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>An array of Network Interfaces for this Linode’s Configuration Profile.</dd><dt class="property-required"
                title="Required">
            <span id="kernel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#kernel_yaml" style="color: inherit; text-decoration: inherit;">kernel</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>A Kernel ID to boot a Linode with. Default is based on image choice. Examples are <code>linode/latest-64bit</code>, <code>linode/grub2</code>, <code>linode/direct-disk</code>, etc. See all kernels <a href="https://api.linode.com/v4/linode/kernels">here</a>. Note that this is a paginated API endpoint (<a href="https://developers.linode.com/api/v4/linode-kernels">docs</a>).</dd><dt class="property-required"
                title="Required">
            <span id="label_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_yaml" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="memorylimit_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memorylimit_yaml" style="color: inherit; text-decoration: inherit;">memory<wbr>Limit</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>Defaults to the total RAM of the Linode</dd><dt class="property-required"
                title="Required">
            <span id="rootdevice_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#rootdevice_yaml" style="color: inherit; text-decoration: inherit;">root<wbr>Device</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The root device to boot.</dd><dt class="property-required"
                title="Required">
            <span id="runlevel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#runlevel_yaml" style="color: inherit; text-decoration: inherit;">run<wbr>Level</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Defines the state of your Linode after booting.</dd><dt class="property-required"
                title="Required">
            <span id="virtmode_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#virtmode_yaml" style="color: inherit; text-decoration: inherit;">virt<wbr>Mode</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>Controls the virtualization mode.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevice">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_csharp" style="color: inherit; text-decoration: inherit;">Sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda&gt;</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_csharp" style="color: inherit; text-decoration: inherit;">Sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_csharp" style="color: inherit; text-decoration: inherit;">Sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_csharp" style="color: inherit; text-decoration: inherit;">Sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_csharp" style="color: inherit; text-decoration: inherit;">Sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_csharp" style="color: inherit; text-decoration: inherit;">Sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_csharp" style="color: inherit; text-decoration: inherit;">Sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_csharp" style="color: inherit; text-decoration: inherit;">Sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_go" style="color: inherit; text-decoration: inherit;">Sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_go" style="color: inherit; text-decoration: inherit;">Sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_go" style="color: inherit; text-decoration: inherit;">Sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_go" style="color: inherit; text-decoration: inherit;">Sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_go" style="color: inherit; text-decoration: inherit;">Sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_go" style="color: inherit; text-decoration: inherit;">Sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_go" style="color: inherit; text-decoration: inherit;">Sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_go" style="color: inherit; text-decoration: inherit;">Sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">[]Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_java" style="color: inherit; text-decoration: inherit;">sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda&gt;</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_java" style="color: inherit; text-decoration: inherit;">sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_java" style="color: inherit; text-decoration: inherit;">sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_java" style="color: inherit; text-decoration: inherit;">sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_java" style="color: inherit; text-decoration: inherit;">sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_java" style="color: inherit; text-decoration: inherit;">sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_java" style="color: inherit; text-decoration: inherit;">sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_java" style="color: inherit; text-decoration: inherit;">sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">List&lt;Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_nodejs" style="color: inherit; text-decoration: inherit;">sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda[]</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_nodejs" style="color: inherit; text-decoration: inherit;">sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_nodejs" style="color: inherit; text-decoration: inherit;">sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_nodejs" style="color: inherit; text-decoration: inherit;">sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_nodejs" style="color: inherit; text-decoration: inherit;">sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_nodejs" style="color: inherit; text-decoration: inherit;">sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_nodejs" style="color: inherit; text-decoration: inherit;">sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_nodejs" style="color: inherit; text-decoration: inherit;">sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh[]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_python" style="color: inherit; text-decoration: inherit;">sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda]</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_python" style="color: inherit; text-decoration: inherit;">sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_python" style="color: inherit; text-decoration: inherit;">sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_python" style="color: inherit; text-decoration: inherit;">sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_python" style="color: inherit; text-decoration: inherit;">sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_python" style="color: inherit; text-decoration: inherit;">sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_python" style="color: inherit; text-decoration: inherit;">sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_python" style="color: inherit; text-decoration: inherit;">sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">Sequence[Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh]</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="sdas_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdas_yaml" style="color: inherit; text-decoration: inherit;">sdas</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesda">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>... <code>sdh</code> -  The SDA-SDH slots, represent the Linux block device nodes for the first 8 disks attached to the Linode.  Each device must be suplied sequentially.  The device can be either a Disk or a Volume identified by <code>disk_label</code> or <code>volume_id</code>. Only one disk identifier is permitted per slot. Devices mapped from <code>sde</code> through <code>sdh</code> are unavailable in <code>&quot;fullvirt&quot;</code> <code>virt_mode</code>.</dd><dt class="property-required"
                title="Required">
            <span id="sdbs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdbs_yaml" style="color: inherit; text-decoration: inherit;">sdbs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdb">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdcs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdcs_yaml" style="color: inherit; text-decoration: inherit;">sdcs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdc">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdds_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdds_yaml" style="color: inherit; text-decoration: inherit;">sdds</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdd">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdes_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdes_yaml" style="color: inherit; text-decoration: inherit;">sdes</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesde">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdfs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdfs_yaml" style="color: inherit; text-decoration: inherit;">sdfs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdf">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdgs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdgs_yaml" style="color: inherit; text-decoration: inherit;">sdgs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdg">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd><dt class="property-required"
                title="Required">
            <span id="sdhs_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#sdhs_yaml" style="color: inherit; text-decoration: inherit;">sdhs</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfigdevicesdh">List&lt;Property Map&gt;</a></span>
        </dt>
        <dd>Device can be either a Disk or Volume identified by disk_id or volume_id. Only one type per slot allowed.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesda">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sda</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdb">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdb</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdc">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdc</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdd">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdd</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesde">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sde</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdf">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdf</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdg">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdg</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfigdevicesdh">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Device<wbr>Sdh</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_csharp" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_csharp" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_go" style="color: inherit; text-decoration: inherit;">Disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_go" style="color: inherit; text-decoration: inherit;">Volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_java" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_java" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_nodejs" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_nodejs" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_id_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disk_label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_label_python" style="color: inherit; text-decoration: inherit;">disk_<wbr>label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volume_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volume_id_python" style="color: inherit; text-decoration: inherit;">volume_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="diskid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#diskid_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Disk ID of the associated <code>disk_label</code>, if used</dd><dt class="property-optional"
                title="Optional">
            <span id="disklabel_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disklabel_yaml" style="color: inherit; text-decoration: inherit;">disk<wbr>Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The <code>label</code> of the <code>disk</code> to map to this <code>device</code> slot.</dd><dt class="property-optional"
                title="Optional">
            <span id="volumeid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#volumeid_yaml" style="color: inherit; text-decoration: inherit;">volume<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The Volume ID to map to this <code>device</code> slot.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfighelper">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Helper</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfsautomount_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfsautomount_csharp" style="color: inherit; text-decoration: inherit;">Devtmpfs<wbr>Automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_csharp" style="color: inherit; text-decoration: inherit;">Distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modulesdep_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modulesdep_csharp" style="color: inherit; text-decoration: inherit;">Modules<wbr>Dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_csharp" style="color: inherit; text-decoration: inherit;">Network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedbdisabled_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedbdisabled_csharp" style="color: inherit; text-decoration: inherit;">Updatedb<wbr>Disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfsautomount_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfsautomount_go" style="color: inherit; text-decoration: inherit;">Devtmpfs<wbr>Automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_go" style="color: inherit; text-decoration: inherit;">Distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modulesdep_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modulesdep_go" style="color: inherit; text-decoration: inherit;">Modules<wbr>Dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_go" style="color: inherit; text-decoration: inherit;">Network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedbdisabled_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedbdisabled_go" style="color: inherit; text-decoration: inherit;">Updatedb<wbr>Disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfsautomount_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfsautomount_java" style="color: inherit; text-decoration: inherit;">devtmpfs<wbr>Automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_java" style="color: inherit; text-decoration: inherit;">distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modulesdep_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modulesdep_java" style="color: inherit; text-decoration: inherit;">modules<wbr>Dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_java" style="color: inherit; text-decoration: inherit;">network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedbdisabled_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedbdisabled_java" style="color: inherit; text-decoration: inherit;">updatedb<wbr>Disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfsautomount_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfsautomount_nodejs" style="color: inherit; text-decoration: inherit;">devtmpfs<wbr>Automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_nodejs" style="color: inherit; text-decoration: inherit;">distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modulesdep_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modulesdep_nodejs" style="color: inherit; text-decoration: inherit;">modules<wbr>Dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_nodejs" style="color: inherit; text-decoration: inherit;">network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedbdisabled_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedbdisabled_nodejs" style="color: inherit; text-decoration: inherit;">updatedb<wbr>Disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfs_automount_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfs_automount_python" style="color: inherit; text-decoration: inherit;">devtmpfs_<wbr>automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_python" style="color: inherit; text-decoration: inherit;">distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modules_dep_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modules_dep_python" style="color: inherit; text-decoration: inherit;">modules_<wbr>dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_python" style="color: inherit; text-decoration: inherit;">network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedb_disabled_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedb_disabled_python" style="color: inherit; text-decoration: inherit;">updatedb_<wbr>disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="devtmpfsautomount_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#devtmpfsautomount_yaml" style="color: inherit; text-decoration: inherit;">devtmpfs<wbr>Automount</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Populates the /dev directory early during boot without udev. Defaults to false.</dd><dt class="property-required"
                title="Required">
            <span id="distro_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#distro_yaml" style="color: inherit; text-decoration: inherit;">distro</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Distribution Helper setting.</dd><dt class="property-required"
                title="Required">
            <span id="modulesdep_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#modulesdep_yaml" style="color: inherit; text-decoration: inherit;">modules<wbr>Dep</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Creates a modules dependency file for the Kernel you run.</dd><dt class="property-required"
                title="Required">
            <span id="network_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#network_yaml" style="color: inherit; text-decoration: inherit;">network</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Controls the behavior of the Linode Config's Network Helper setting, used to automatically configure additional IP addresses assigned to this instance.</dd><dt class="property-required"
                title="Required">
            <span id="updatedbdisabled_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#updatedbdisabled_yaml" style="color: inherit; text-decoration: inherit;">updatedb<wbr>Disabled</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Disables updatedb cron job to avoid disk thrashing.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfiginterface">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_csharp" style="color: inherit; text-decoration: inherit;">Active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_csharp" style="color: inherit; text-decoration: inherit;">Ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_csharp" style="color: inherit; text-decoration: inherit;">Purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpcid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpcid_csharp" style="color: inherit; text-decoration: inherit;">Vpc<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipranges_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipranges_csharp" style="color: inherit; text-decoration: inherit;">Ip<wbr>Ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;string&gt;</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipamaddress_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipamaddress_csharp" style="color: inherit; text-decoration: inherit;">Ipam<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_csharp" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_csharp" style="color: inherit; text-decoration: inherit;">Primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnetid_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnetid_csharp" style="color: inherit; text-decoration: inherit;">Subnet<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_go" style="color: inherit; text-decoration: inherit;">Active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_go" style="color: inherit; text-decoration: inherit;">Ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_go" style="color: inherit; text-decoration: inherit;">Purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpcid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpcid_go" style="color: inherit; text-decoration: inherit;">Vpc<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipranges_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipranges_go" style="color: inherit; text-decoration: inherit;">Ip<wbr>Ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">[]string</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipamaddress_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipamaddress_go" style="color: inherit; text-decoration: inherit;">Ipam<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_go" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_go" style="color: inherit; text-decoration: inherit;">Primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnetid_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnetid_go" style="color: inherit; text-decoration: inherit;">Subnet<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_java" style="color: inherit; text-decoration: inherit;">active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_java" style="color: inherit; text-decoration: inherit;">ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_java" style="color: inherit; text-decoration: inherit;">purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpcid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpcid_java" style="color: inherit; text-decoration: inherit;">vpc<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipranges_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipranges_java" style="color: inherit; text-decoration: inherit;">ip<wbr>Ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipamaddress_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipamaddress_java" style="color: inherit; text-decoration: inherit;">ipam<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_java" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_java" style="color: inherit; text-decoration: inherit;">primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnetid_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnetid_java" style="color: inherit; text-decoration: inherit;">subnet<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_nodejs" style="color: inherit; text-decoration: inherit;">active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_nodejs" style="color: inherit; text-decoration: inherit;">ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_nodejs" style="color: inherit; text-decoration: inherit;">purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpcid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpcid_nodejs" style="color: inherit; text-decoration: inherit;">vpc<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipranges_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipranges_nodejs" style="color: inherit; text-decoration: inherit;">ip<wbr>Ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string[]</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipamaddress_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipamaddress_nodejs" style="color: inherit; text-decoration: inherit;">ipam<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_nodejs" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_nodejs" style="color: inherit; text-decoration: inherit;">primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">boolean</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnetid_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnetid_nodejs" style="color: inherit; text-decoration: inherit;">subnet<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_python" style="color: inherit; text-decoration: inherit;">active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_python" style="color: inherit; text-decoration: inherit;">ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_python" style="color: inherit; text-decoration: inherit;">purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpc_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_id_python" style="color: inherit; text-decoration: inherit;">vpc_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ip_ranges_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ip_ranges_python" style="color: inherit; text-decoration: inherit;">ip_<wbr>ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Sequence[str]</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipam_address_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipam_address_python" style="color: inherit; text-decoration: inherit;">ipam_<wbr>address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_python" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_python" style="color: inherit; text-decoration: inherit;">primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">bool</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnet_id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnet_id_python" style="color: inherit; text-decoration: inherit;">subnet_<wbr>id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="active_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#active_yaml" style="color: inherit; text-decoration: inherit;">active</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether this interface is currently booted and active.</dd><dt class="property-required"
                title="Required">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="ipv4_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipv4_yaml" style="color: inherit; text-decoration: inherit;">ipv4</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type"><a href="#getinstancesinstanceconfiginterfaceipv4">Property Map</a></span>
        </dt>
        <dd>This Linode's IPv4 Addresses. Each Linode is assigned a single public IPv4 address upon creation, and may get a single private IPv4 address if needed. You may need to open a support ticket to get additional IPv4 addresses.</dd><dt class="property-required"
                title="Required">
            <span id="purpose_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#purpose_yaml" style="color: inherit; text-decoration: inherit;">purpose</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The type of interface. (<code>public</code>, <code>vlan</code>, <code>vpc</code>)</dd><dt class="property-required"
                title="Required">
            <span id="vpcid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpcid_yaml" style="color: inherit; text-decoration: inherit;">vpc<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The ID of VPC which this interface is attached to.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipranges_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipranges_yaml" style="color: inherit; text-decoration: inherit;">ip<wbr>Ranges</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">List&lt;String&gt;</span>
        </dt>
        <dd>IPv4 CIDR VPC Subnet ranges that are routed to this Interface. IPv6 ranges are also available to select participants in the Beta program.</dd><dt class="property-optional"
                title="Optional">
            <span id="ipamaddress_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#ipamaddress_yaml" style="color: inherit; text-decoration: inherit;">ipam<wbr>Address</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>This Network Interface’s private IP address in Classless Inter-Domain Routing (CIDR) notation. (e.g. <code>10.0.0.1/24</code>) This field is only allowed for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="label_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_yaml" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="primary_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#primary_yaml" style="color: inherit; text-decoration: inherit;">primary</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Boolean</span>
        </dt>
        <dd>Whether the interface is the primary interface that should have the default route for this Linode. This field is only allowed for interfaces with the <code>public</code> or <code>vpc</code> purpose.</dd><dt class="property-optional"
                title="Optional">
            <span id="subnetid_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#subnetid_yaml" style="color: inherit; text-decoration: inherit;">subnet<wbr>Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The name of the VPC Subnet to join. This field is only allowed and required for interfaces with the <code>vpc</code> purpose.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstanceconfiginterfaceipv4">Get<wbr>Instances<wbr>Instance<wbr>Config<wbr>Interface<wbr>Ipv4</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_csharp" style="color: inherit; text-decoration: inherit;">Nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_csharp" style="color: inherit; text-decoration: inherit;">Vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_go" style="color: inherit; text-decoration: inherit;">Nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_go" style="color: inherit; text-decoration: inherit;">Vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_java" style="color: inherit; text-decoration: inherit;">nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_java" style="color: inherit; text-decoration: inherit;">vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_nodejs" style="color: inherit; text-decoration: inherit;">nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_nodejs" style="color: inherit; text-decoration: inherit;">vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_python" style="color: inherit; text-decoration: inherit;">nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_python" style="color: inherit; text-decoration: inherit;">vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="nat11_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#nat11_yaml" style="color: inherit; text-decoration: inherit;">nat11</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The public IP that will be used for the one-to-one NAT purpose. If this is <code>any</code>, the public IPv4 address assigned to this Linode is used on this interface and will be 1:1 NATted with the VPC IPv4 address.</dd><dt class="property-required"
                title="Required">
            <span id="vpc_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vpc_yaml" style="color: inherit; text-decoration: inherit;">vpc</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The IP from the VPC subnet to use for this interface. A random address will be assigned if this is not specified in a VPC interface.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstancedisk">Get<wbr>Instances<wbr>Instance<wbr>Disk</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_csharp" style="color: inherit; text-decoration: inherit;">Filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_csharp" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_csharp" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_csharp" style="color: inherit; text-decoration: inherit;">Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_go" style="color: inherit; text-decoration: inherit;">Filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_go" style="color: inherit; text-decoration: inherit;">Id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_go" style="color: inherit; text-decoration: inherit;">Label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_go" style="color: inherit; text-decoration: inherit;">Size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_java" style="color: inherit; text-decoration: inherit;">filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_java" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_java" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_java" style="color: inherit; text-decoration: inherit;">size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_nodejs" style="color: inherit; text-decoration: inherit;">filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_nodejs" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_nodejs" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">string</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_nodejs" style="color: inherit; text-decoration: inherit;">size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_python" style="color: inherit; text-decoration: inherit;">filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_python" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">str</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_python" style="color: inherit; text-decoration: inherit;">size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="filesystem_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#filesystem_yaml" style="color: inherit; text-decoration: inherit;">filesystem</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The Disk filesystem can be one of: <code>&quot;raw&quot;</code>, <code>&quot;swap&quot;</code>, <code>&quot;ext3&quot;</code>, <code>&quot;ext4&quot;</code>, or <code>&quot;initrd&quot;</code> which has a max size of 32mb and can be used in the config <code>initrd</code> (not currently supported in this provider).</dd><dt class="property-required"
                title="Required">
            <span id="id_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_yaml" style="color: inherit; text-decoration: inherit;">id</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The ID of the disk in the Linode API.</dd><dt class="property-required"
                title="Required">
            <span id="label_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#label_yaml" style="color: inherit; text-decoration: inherit;">label</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">String</span>
        </dt>
        <dd>The name of the VLAN to join. This field is only allowed and required for interfaces with the <code>vlan</code> purpose.</dd><dt class="property-required"
                title="Required">
            <span id="size_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#size_yaml" style="color: inherit; text-decoration: inherit;">size</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The size of the Disk in MB.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <h4 id="getinstancesinstancespec">Get<wbr>Instances<wbr>Instance<wbr>Spec</h4>
    
    
    
    <div>
    <pulumi-choosable type="language" values="csharp">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_csharp" style="color: inherit; text-decoration: inherit;">Disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_csharp" style="color: inherit; text-decoration: inherit;">Memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_csharp" style="color: inherit; text-decoration: inherit;">Transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_csharp">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_csharp" style="color: inherit; text-decoration: inherit;">Vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="go">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_go" style="color: inherit; text-decoration: inherit;">Disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_go" style="color: inherit; text-decoration: inherit;">Memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_go" style="color: inherit; text-decoration: inherit;">Transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_go">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_go" style="color: inherit; text-decoration: inherit;">Vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="java">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_java" style="color: inherit; text-decoration: inherit;">disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_java" style="color: inherit; text-decoration: inherit;">memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_java" style="color: inherit; text-decoration: inherit;">transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_java">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_java" style="color: inherit; text-decoration: inherit;">vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Integer</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="javascript,typescript">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_nodejs" style="color: inherit; text-decoration: inherit;">disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_nodejs" style="color: inherit; text-decoration: inherit;">memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_nodejs" style="color: inherit; text-decoration: inherit;">transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_nodejs">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_nodejs" style="color: inherit; text-decoration: inherit;">vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">number</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="python">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_python" style="color: inherit; text-decoration: inherit;">disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_python" style="color: inherit; text-decoration: inherit;">memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_python" style="color: inherit; text-decoration: inherit;">transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_python">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_python" style="color: inherit; text-decoration: inherit;">vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">int</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    <div>
    <pulumi-choosable type="language" values="yaml">
    <dl class="resources-properties"><dt class="property-required"
                title="Required">
            <span id="disk_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#disk_yaml" style="color: inherit; text-decoration: inherit;">disk</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image without specifying disks.</dd><dt class="property-required"
                title="Required">
            <span id="memory_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#memory_yaml" style="color: inherit; text-decoration: inherit;">memory</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.</dd><dt class="property-required"
                title="Required">
            <span id="transfer_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#transfer_yaml" style="color: inherit; text-decoration: inherit;">transfer</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The amount of network transfer this Linode is allotted each month.</dd><dt class="property-required"
                title="Required">
            <span id="vcpus_yaml">
    <a data-swiftype-name="resource-property" data-swiftype-type="text" href="#vcpus_yaml" style="color: inherit; text-decoration: inherit;">vcpus</a>
    </span>
            <span class="property-indicator"></span>
            <span class="property-type">Number</span>
        </dt>
        <dd>The number of vcpus this Linode has access to. Typically a Linode will choose to boot with all of its available vcpus, but this can be configured in a Config Profile.</dd></dl>
    </pulumi-choosable>
    </div>
    
    
    
    
    
    <h2 id="package-details">Package Details</h2>
    <dl class="package-details">
    	<dt>Repository</dt>
    	<dd><a href="https://github.com/pulumi/pulumi-linode">Linode pulumi/pulumi-linode</a></dd>
    	<dt>License</dt>
    	<dd>Apache-2.0</dd>
    	<dt>Notes</dt>
    	<dd>This Pulumi package is based on the <a href="https://github.com/linode/terraform-provider-linode"><code>linode</code> Terraform Provider</a>.</dd>
    </dl>
    
    linode logo
    Linode v4.17.0 published on Wednesday, Mar 27, 2024 by Pulumi