1. Packages
  2. Rancher2
  3. API Docs
  4. getClusterDriver
Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi

rancher2.getClusterDriver

Explore with Pulumi AI

rancher2 logo
Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi

    Use this data source to retrieve information about a Rancher v2 Cluster Driver resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as rancher2 from "@pulumi/rancher2";
    
    const foo = rancher2.getClusterDriver({
        name: "foo",
    });
    
    import pulumi
    import pulumi_rancher2 as rancher2
    
    foo = rancher2.get_cluster_driver(name="foo")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-rancher2/sdk/v6/go/rancher2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rancher2.LookupClusterDriver(ctx, &rancher2.LookupClusterDriverArgs{
    			Name: "foo",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Rancher2 = Pulumi.Rancher2;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = Rancher2.GetClusterDriver.Invoke(new()
        {
            Name = "foo",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.rancher2.Rancher2Functions;
    import com.pulumi.rancher2.inputs.GetClusterDriverArgs;
    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 foo = Rancher2Functions.getClusterDriver(GetClusterDriverArgs.builder()
                .name("foo")
                .build());
    
        }
    }
    
    variables:
      foo:
        fn::invoke:
          Function: rancher2:getClusterDriver
          Arguments:
            name: foo
    

    Using getClusterDriver

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getClusterDriver(args: GetClusterDriverArgs, opts?: InvokeOptions): Promise<GetClusterDriverResult>
    function getClusterDriverOutput(args: GetClusterDriverOutputArgs, opts?: InvokeOptions): Output<GetClusterDriverResult>
    def get_cluster_driver(name: Optional[str] = None,
                           url: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetClusterDriverResult
    def get_cluster_driver_output(name: Optional[pulumi.Input[str]] = None,
                           url: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetClusterDriverResult]
    func LookupClusterDriver(ctx *Context, args *LookupClusterDriverArgs, opts ...InvokeOption) (*LookupClusterDriverResult, error)
    func LookupClusterDriverOutput(ctx *Context, args *LookupClusterDriverOutputArgs, opts ...InvokeOption) LookupClusterDriverResultOutput

    > Note: This function is named LookupClusterDriver in the Go SDK.

    public static class GetClusterDriver 
    {
        public static Task<GetClusterDriverResult> InvokeAsync(GetClusterDriverArgs args, InvokeOptions? opts = null)
        public static Output<GetClusterDriverResult> Invoke(GetClusterDriverInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClusterDriverResult> getClusterDriver(GetClusterDriverArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: rancher2:index/getClusterDriver:getClusterDriver
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Name of the cluster driver (string)
    Url string
    The URL to download the machine driver binary for 64-bit Linux (string)
    Name string
    Name of the cluster driver (string)
    Url string
    The URL to download the machine driver binary for 64-bit Linux (string)
    name String
    Name of the cluster driver (string)
    url String
    The URL to download the machine driver binary for 64-bit Linux (string)
    name string
    Name of the cluster driver (string)
    url string
    The URL to download the machine driver binary for 64-bit Linux (string)
    name str
    Name of the cluster driver (string)
    url str
    The URL to download the machine driver binary for 64-bit Linux (string)
    name String
    Name of the cluster driver (string)
    url String
    The URL to download the machine driver binary for 64-bit Linux (string)

    getClusterDriver Result

    The following output properties are available:

    Active bool
    (Computed) Specify if the cluster driver state (bool)
    ActualUrl string
    (Computed) Actual url of the cluster driver (string)
    Annotations Dictionary<string, object>
    (Computed) Annotations of the resource (map)
    Builtin bool
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    Checksum string
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels Dictionary<string, object>
    (Computed) Labels of the resource (map)
    Name string
    UiUrl string
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    Url string
    WhitelistDomains List<string>
    (Computed) Domains to whitelist for the ui (list)
    Active bool
    (Computed) Specify if the cluster driver state (bool)
    ActualUrl string
    (Computed) Actual url of the cluster driver (string)
    Annotations map[string]interface{}
    (Computed) Annotations of the resource (map)
    Builtin bool
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    Checksum string
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels map[string]interface{}
    (Computed) Labels of the resource (map)
    Name string
    UiUrl string
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    Url string
    WhitelistDomains []string
    (Computed) Domains to whitelist for the ui (list)
    active Boolean
    (Computed) Specify if the cluster driver state (bool)
    actualUrl String
    (Computed) Actual url of the cluster driver (string)
    annotations Map<String,Object>
    (Computed) Annotations of the resource (map)
    builtin Boolean
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    checksum String
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<String,Object>
    (Computed) Labels of the resource (map)
    name String
    uiUrl String
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    url String
    whitelistDomains List<String>
    (Computed) Domains to whitelist for the ui (list)
    active boolean
    (Computed) Specify if the cluster driver state (bool)
    actualUrl string
    (Computed) Actual url of the cluster driver (string)
    annotations {[key: string]: any}
    (Computed) Annotations of the resource (map)
    builtin boolean
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    checksum string
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    id string
    The provider-assigned unique ID for this managed resource.
    labels {[key: string]: any}
    (Computed) Labels of the resource (map)
    name string
    uiUrl string
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    url string
    whitelistDomains string[]
    (Computed) Domains to whitelist for the ui (list)
    active bool
    (Computed) Specify if the cluster driver state (bool)
    actual_url str
    (Computed) Actual url of the cluster driver (string)
    annotations Mapping[str, Any]
    (Computed) Annotations of the resource (map)
    builtin bool
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    checksum str
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    id str
    The provider-assigned unique ID for this managed resource.
    labels Mapping[str, Any]
    (Computed) Labels of the resource (map)
    name str
    ui_url str
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    url str
    whitelist_domains Sequence[str]
    (Computed) Domains to whitelist for the ui (list)
    active Boolean
    (Computed) Specify if the cluster driver state (bool)
    actualUrl String
    (Computed) Actual url of the cluster driver (string)
    annotations Map<Any>
    (Computed) Annotations of the resource (map)
    builtin Boolean
    (Computed) Specify whether the cluster driver is an internal cluster driver or not (bool)
    checksum String
    (Computed) Verify that the downloaded driver matches the expected checksum (string)
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<Any>
    (Computed) Labels of the resource (map)
    name String
    uiUrl String
    (Computed) The URL to load for customized Add Clusters screen for this driver (string)
    url String
    whitelistDomains List<String>
    (Computed) Domains to whitelist for the ui (list)

    Package Details

    Repository
    Rancher2 pulumi/pulumi-rancher2
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rancher2 Terraform Provider.
    rancher2 logo
    Rancher 2 v6.1.0 published on Tuesday, Mar 12, 2024 by Pulumi