1. Packages
  2. Outscale Provider
  3. API Docs
  4. getKeypairs
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getKeypairs

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about keypairs.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const keypairs01 = outscale.getKeypairs({
        filters: [{
            name: "keypair_names",
            values: [
                "terraform-keypair-01",
                "terraform-keypair-02",
            ],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    keypairs01 = outscale.get_keypairs(filters=[{
        "name": "keypair_names",
        "values": [
            "terraform-keypair-01",
            "terraform-keypair-02",
        ],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetKeypairs(ctx, &outscale.GetKeypairsArgs{
    			Filters: []outscale.GetKeypairsFilter{
    				{
    					Name: "keypair_names",
    					Values: []string{
    						"terraform-keypair-01",
    						"terraform-keypair-02",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var keypairs01 = Outscale.GetKeypairs.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetKeypairsFilterInputArgs
                {
                    Name = "keypair_names",
                    Values = new[]
                    {
                        "terraform-keypair-01",
                        "terraform-keypair-02",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetKeypairsArgs;
    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 keypairs01 = OutscaleFunctions.getKeypairs(GetKeypairsArgs.builder()
                .filters(GetKeypairsFilterArgs.builder()
                    .name("keypair_names")
                    .values(                
                        "terraform-keypair-01",
                        "terraform-keypair-02")
                    .build())
                .build());
    
        }
    }
    
    variables:
      keypairs01:
        fn::invoke:
          function: outscale:getKeypairs
          arguments:
            filters:
              - name: keypair_names
                values:
                  - terraform-keypair-01
                  - terraform-keypair-02
    

    Using getKeypairs

    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 getKeypairs(args: GetKeypairsArgs, opts?: InvokeOptions): Promise<GetKeypairsResult>
    function getKeypairsOutput(args: GetKeypairsOutputArgs, opts?: InvokeOptions): Output<GetKeypairsResult>
    def get_keypairs(filters: Optional[Sequence[GetKeypairsFilter]] = None,
                     id: Optional[str] = None,
                     keypair_names: Optional[Sequence[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> GetKeypairsResult
    def get_keypairs_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetKeypairsFilterArgs]]]] = None,
                     id: Optional[pulumi.Input[str]] = None,
                     keypair_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetKeypairsResult]
    func GetKeypairs(ctx *Context, args *GetKeypairsArgs, opts ...InvokeOption) (*GetKeypairsResult, error)
    func GetKeypairsOutput(ctx *Context, args *GetKeypairsOutputArgs, opts ...InvokeOption) GetKeypairsResultOutput

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

    public static class GetKeypairs 
    {
        public static Task<GetKeypairsResult> InvokeAsync(GetKeypairsArgs args, InvokeOptions? opts = null)
        public static Output<GetKeypairsResult> Invoke(GetKeypairsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetKeypairsResult> getKeypairs(GetKeypairsArgs args, InvokeOptions options)
    public static Output<GetKeypairsResult> getKeypairs(GetKeypairsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getKeypairs:getKeypairs
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetKeypairsFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    KeypairNames List<string>
    Filters []GetKeypairsFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    KeypairNames []string
    filters List<GetKeypairsFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    keypairNames List<String>
    filters GetKeypairsFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    keypairNames string[]
    filters Sequence[GetKeypairsFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    keypair_names Sequence[str]
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    keypairNames List<String>

    getKeypairs Result

    The following output properties are available:

    Id string
    Keypairs List<GetKeypairsKeypair>
    Information about one or more keypairs.
    RequestId string
    Filters List<GetKeypairsFilter>
    KeypairNames List<string>
    Id string
    Keypairs []GetKeypairsKeypair
    Information about one or more keypairs.
    RequestId string
    Filters []GetKeypairsFilter
    KeypairNames []string
    id String
    keypairs List<GetKeypairsKeypair>
    Information about one or more keypairs.
    requestId String
    filters List<GetKeypairsFilter>
    keypairNames List<String>
    id string
    keypairs GetKeypairsKeypair[]
    Information about one or more keypairs.
    requestId string
    filters GetKeypairsFilter[]
    keypairNames string[]
    id String
    keypairs List<Property Map>
    Information about one or more keypairs.
    requestId String
    filters List<Property Map>
    keypairNames List<String>

    Supporting Types

    GetKeypairsFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetKeypairsKeypair

    KeypairFingerprint string
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    KeypairName string
    The name of the keypair.
    KeypairFingerprint string
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    KeypairName string
    The name of the keypair.
    keypairFingerprint String
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    keypairName String
    The name of the keypair.
    keypairFingerprint string
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    keypairName string
    The name of the keypair.
    keypair_fingerprint str
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    keypair_name str
    The name of the keypair.
    keypairFingerprint String
    The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    keypairName String
    The name of the keypair.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale