qdrant-cloud 1.3.1 published on Friday, Mar 7, 2025 by qdrant
qdrant-cloud.getAccountsAuthKeys
Explore with Pulumi AI
qdrant-cloud 1.3.1 published on Friday, Mar 7, 2025 by qdrant
Account AuthKey Data Source
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as qdrant_cloud from "@pulumi/qdrant-cloud";
const test = qdrant_cloud.getAccountsAuthKeys({});
export const keys = test.then(test => test.keys);
import pulumi
import pulumi_qdrant_cloud as qdrant_cloud
test = qdrant_cloud.get_accounts_auth_keys()
pulumi.export("keys", test.keys)
package main
import (
	qdrantcloud "github.com/pulumi/pulumi-terraform-provider/sdks/go/qdrant-cloud/qdrant-cloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := qdrantcloud.GetAccountsAuthKeys(ctx, &qdrantcloud.GetAccountsAuthKeysArgs{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("keys", test.Keys)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using QdrantCloud = Pulumi.QdrantCloud;
return await Deployment.RunAsync(() => 
{
    var test = QdrantCloud.GetAccountsAuthKeys.Invoke();
    return new Dictionary<string, object?>
    {
        ["keys"] = test.Apply(getAccountsAuthKeysResult => getAccountsAuthKeysResult.Keys),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qdrantcloud.QdrantcloudFunctions;
import com.pulumi.qdrantcloud.inputs.GetAccountsAuthKeysArgs;
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 test = Qdrant-cloudFunctions.getAccountsAuthKeys();
        ctx.export("keys", test.applyValue(getAccountsAuthKeysResult -> getAccountsAuthKeysResult.keys()));
    }
}
variables:
  test:
    fn::invoke:
      function: qdrant-cloud:getAccountsAuthKeys
      arguments: {}
outputs:
  keys: ${test.keys}
Using getAccountsAuthKeys
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 getAccountsAuthKeys(args: GetAccountsAuthKeysArgs, opts?: InvokeOptions): Promise<GetAccountsAuthKeysResult>
function getAccountsAuthKeysOutput(args: GetAccountsAuthKeysOutputArgs, opts?: InvokeOptions): Output<GetAccountsAuthKeysResult>def get_accounts_auth_keys(account_id: Optional[str] = None,
                           id: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetAccountsAuthKeysResult
def get_accounts_auth_keys_output(account_id: Optional[pulumi.Input[str]] = None,
                           id: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetAccountsAuthKeysResult]func GetAccountsAuthKeys(ctx *Context, args *GetAccountsAuthKeysArgs, opts ...InvokeOption) (*GetAccountsAuthKeysResult, error)
func GetAccountsAuthKeysOutput(ctx *Context, args *GetAccountsAuthKeysOutputArgs, opts ...InvokeOption) GetAccountsAuthKeysResultOutput> Note: This function is named GetAccountsAuthKeys in the Go SDK.
public static class GetAccountsAuthKeys 
{
    public static Task<GetAccountsAuthKeysResult> InvokeAsync(GetAccountsAuthKeysArgs args, InvokeOptions? opts = null)
    public static Output<GetAccountsAuthKeysResult> Invoke(GetAccountsAuthKeysInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAccountsAuthKeysResult> getAccountsAuthKeys(GetAccountsAuthKeysArgs args, InvokeOptions options)
public static Output<GetAccountsAuthKeysResult> getAccountsAuthKeys(GetAccountsAuthKeysArgs args, InvokeOptions options)
fn::invoke:
  function: qdrant-cloud:index/getAccountsAuthKeys:getAccountsAuthKeys
  arguments:
    # arguments dictionaryThe following arguments are supported:
- account_
id str - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - id str
 - The ID of this resource.
 
getAccountsAuthKeys Result
The following output properties are available:
- Account
Id string - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - Id string
 - The ID of this resource.
 - Keys
List<Pulumi.
Qdrant Cloud. Outputs. Get Accounts Auth Keys Key>  - Auth Keys Schema List of Auth Keys field
 
- Account
Id string - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - Id string
 - The ID of this resource.
 - Keys
[]Get
Accounts Auth Keys Key  - Auth Keys Schema List of Auth Keys field
 
- account
Id String - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - id String
 - The ID of this resource.
 - keys
List<Get
Accounts Auth Keys Key>  - Auth Keys Schema List of Auth Keys field
 
- account
Id string - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - id string
 - The ID of this resource.
 - keys
Get
Accounts Auth Keys Key[]  - Auth Keys Schema List of Auth Keys field
 
- account_
id str - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - id str
 - The ID of this resource.
 - keys
Sequence[Get
Accounts Auth Keys Key]  - Auth Keys Schema List of Auth Keys field
 
- account
Id String - Auth Keys Schema Account Identifier where all those Auth Keys belongs to field
 - id String
 - The ID of this resource.
 - keys List<Property Map>
 - Auth Keys Schema List of Auth Keys field
 
Supporting Types
GetAccountsAuthKeysKey    
- Cluster
Ids List<string> - Created
At string - Id string
 - Prefix string
 - Token string
 
- Cluster
Ids []string - Created
At string - Id string
 - Prefix string
 - Token string
 
- cluster
Ids List<String> - created
At String - id String
 - prefix String
 - token String
 
- cluster
Ids string[] - created
At string - id string
 - prefix string
 - token string
 
- cluster_
ids Sequence[str] - created_
at str - id str
 - prefix str
 - token str
 
- cluster
Ids List<String> - created
At String - id String
 - prefix String
 - token String
 
Package Details
- Repository
 - qdrant-cloud qdrant/terraform-provider-qdrant-cloud
 - License
 - Notes
 - This Pulumi package is based on the 
qdrant-cloudTerraform Provider. 
qdrant-cloud 1.3.1 published on Friday, Mar 7, 2025 by qdrant