1. Packages
  2. GitHub
  3. API Docs
  4. getCodespacesUserSecrets
GitHub v5.19.0 published on Friday, Sep 22, 2023 by Pulumi

github.getCodespacesUserSecrets

Explore with Pulumi AI

github logo
GitHub v5.19.0 published on Friday, Sep 22, 2023 by Pulumi

    Use this data source to retrieve the list of codespaces secrets of the user.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Github = Pulumi.Github;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Github.GetCodespacesUserSecrets.Invoke();
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-github/sdk/v5/go/github"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := github.GetCodespacesUserSecrets(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.github.GithubFunctions;
    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 example = GithubFunctions.getCodespacesUserSecrets();
    
        }
    }
    
    import pulumi
    import pulumi_github as github
    
    example = github.get_codespaces_user_secrets()
    
    import * as pulumi from "@pulumi/pulumi";
    import * as github from "@pulumi/github";
    
    const example = github.getCodespacesUserSecrets({});
    
    variables:
      example:
        fn::invoke:
          Function: github:getCodespacesUserSecrets
          Arguments: {}
    

    Using getCodespacesUserSecrets

    function getCodespacesUserSecrets(opts?: InvokeOptions): Promise<GetCodespacesUserSecretsResult>
    def get_codespaces_user_secrets(opts: Optional[InvokeOptions] = None) -> GetCodespacesUserSecretsResult
    func GetCodespacesUserSecrets(ctx *Context, opts ...InvokeOption) (*GetCodespacesUserSecretsResult, error)

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

    public static class GetCodespacesUserSecrets 
    {
        public static Task<GetCodespacesUserSecretsResult> InvokeAsync(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCodespacesUserSecretsResult> getCodespacesUserSecrets(InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: github:index/getCodespacesUserSecrets:getCodespacesUserSecrets
      arguments:
        # arguments dictionary

    getCodespacesUserSecrets Result

    The following output properties are available:

    Id string

    The provider-assigned unique ID for this managed resource.

    Secrets List<GetCodespacesUserSecretsSecret>

    list of secrets for the repository

    Id string

    The provider-assigned unique ID for this managed resource.

    Secrets []GetCodespacesUserSecretsSecret

    list of secrets for the repository

    id String

    The provider-assigned unique ID for this managed resource.

    secrets List<GetCodespacesUserSecretsSecret>

    list of secrets for the repository

    id string

    The provider-assigned unique ID for this managed resource.

    secrets GetCodespacesUserSecretsSecret[]

    list of secrets for the repository

    id str

    The provider-assigned unique ID for this managed resource.

    secrets Sequence[GetCodespacesUserSecretsSecret]

    list of secrets for the repository

    id String

    The provider-assigned unique ID for this managed resource.

    secrets List<Property Map>

    list of secrets for the repository

    Supporting Types

    GetCodespacesUserSecretsSecret

    CreatedAt string

    Timestamp of the secret creation

    Name string

    Secret name

    UpdatedAt string

    Timestamp of the secret last update

    Visibility string

    Secret visibility

    CreatedAt string

    Timestamp of the secret creation

    Name string

    Secret name

    UpdatedAt string

    Timestamp of the secret last update

    Visibility string

    Secret visibility

    createdAt String

    Timestamp of the secret creation

    name String

    Secret name

    updatedAt String

    Timestamp of the secret last update

    visibility String

    Secret visibility

    createdAt string

    Timestamp of the secret creation

    name string

    Secret name

    updatedAt string

    Timestamp of the secret last update

    visibility string

    Secret visibility

    created_at str

    Timestamp of the secret creation

    name str

    Secret name

    updated_at str

    Timestamp of the secret last update

    visibility str

    Secret visibility

    createdAt String

    Timestamp of the secret creation

    name String

    Secret name

    updatedAt String

    Timestamp of the secret last update

    visibility String

    Secret visibility

    Package Details

    Repository
    GitHub pulumi/pulumi-github
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the github Terraform Provider.

    github logo
    GitHub v5.19.0 published on Friday, Sep 22, 2023 by Pulumi