1. Packages
  2. GitHub
  3. API Docs
  4. RepositoryTopics
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

github.RepositoryTopics

Explore with Pulumi AI

github logo
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as github from "@pulumi/github";
    
    const testRepository = github.getRepository({
        name: "test",
    });
    const testRepositoryTopics = new github.RepositoryTopics("testRepositoryTopics", {
        repository: github_repository.test.name,
        topics: [
            "topic-1",
            "topic-2",
        ],
    });
    
    import pulumi
    import pulumi_github as github
    
    test_repository = github.get_repository(name="test")
    test_repository_topics = github.RepositoryTopics("testRepositoryTopics",
        repository=github_repository["test"]["name"],
        topics=[
            "topic-1",
            "topic-2",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-github/sdk/v6/go/github"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := github.LookupRepository(ctx, &github.LookupRepositoryArgs{
    			Name: pulumi.StringRef("test"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = github.NewRepositoryTopics(ctx, "testRepositoryTopics", &github.RepositoryTopicsArgs{
    			Repository: pulumi.Any(github_repository.Test.Name),
    			Topics: pulumi.StringArray{
    				pulumi.String("topic-1"),
    				pulumi.String("topic-2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Github = Pulumi.Github;
    
    return await Deployment.RunAsync(() => 
    {
        var testRepository = Github.GetRepository.Invoke(new()
        {
            Name = "test",
        });
    
        var testRepositoryTopics = new Github.RepositoryTopics("testRepositoryTopics", new()
        {
            Repository = github_repository.Test.Name,
            Topics = new[]
            {
                "topic-1",
                "topic-2",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.github.GithubFunctions;
    import com.pulumi.github.inputs.GetRepositoryArgs;
    import com.pulumi.github.RepositoryTopics;
    import com.pulumi.github.RepositoryTopicsArgs;
    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 testRepository = GithubFunctions.getRepository(GetRepositoryArgs.builder()
                .name("test")
                .build());
    
            var testRepositoryTopics = new RepositoryTopics("testRepositoryTopics", RepositoryTopicsArgs.builder()        
                .repository(github_repository.test().name())
                .topics(            
                    "topic-1",
                    "topic-2")
                .build());
    
        }
    }
    
    resources:
      testRepositoryTopics:
        type: github:RepositoryTopics
        properties:
          repository: ${github_repository.test.name}
          topics:
            - topic-1
            - topic-2
    variables:
      testRepository:
        fn::invoke:
          Function: github:getRepository
          Arguments:
            name: test
    

    Create RepositoryTopics Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RepositoryTopics(name: string, args: RepositoryTopicsArgs, opts?: CustomResourceOptions);
    @overload
    def RepositoryTopics(resource_name: str,
                         args: RepositoryTopicsArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def RepositoryTopics(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         repository: Optional[str] = None,
                         topics: Optional[Sequence[str]] = None)
    func NewRepositoryTopics(ctx *Context, name string, args RepositoryTopicsArgs, opts ...ResourceOption) (*RepositoryTopics, error)
    public RepositoryTopics(string name, RepositoryTopicsArgs args, CustomResourceOptions? opts = null)
    public RepositoryTopics(String name, RepositoryTopicsArgs args)
    public RepositoryTopics(String name, RepositoryTopicsArgs args, CustomResourceOptions options)
    
    type: github:RepositoryTopics
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RepositoryTopicsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RepositoryTopicsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RepositoryTopicsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryTopicsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryTopicsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var repositoryTopicsResource = new Github.RepositoryTopics("repositoryTopicsResource", new()
    {
        Repository = "string",
        Topics = new[]
        {
            "string",
        },
    });
    
    example, err := github.NewRepositoryTopics(ctx, "repositoryTopicsResource", &github.RepositoryTopicsArgs{
    	Repository: pulumi.String("string"),
    	Topics: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var repositoryTopicsResource = new RepositoryTopics("repositoryTopicsResource", RepositoryTopicsArgs.builder()        
        .repository("string")
        .topics("string")
        .build());
    
    repository_topics_resource = github.RepositoryTopics("repositoryTopicsResource",
        repository="string",
        topics=["string"])
    
    const repositoryTopicsResource = new github.RepositoryTopics("repositoryTopicsResource", {
        repository: "string",
        topics: ["string"],
    });
    
    type: github:RepositoryTopics
    properties:
        repository: string
        topics:
            - string
    

    RepositoryTopics Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The RepositoryTopics resource accepts the following input properties:

    Repository string
    The repository name.
    Topics List<string>
    A list of topics to add to the repository.
    Repository string
    The repository name.
    Topics []string
    A list of topics to add to the repository.
    repository String
    The repository name.
    topics List<String>
    A list of topics to add to the repository.
    repository string
    The repository name.
    topics string[]
    A list of topics to add to the repository.
    repository str
    The repository name.
    topics Sequence[str]
    A list of topics to add to the repository.
    repository String
    The repository name.
    topics List<String>
    A list of topics to add to the repository.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RepositoryTopics resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing RepositoryTopics Resource

    Get an existing RepositoryTopics resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RepositoryTopicsState, opts?: CustomResourceOptions): RepositoryTopics
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            repository: Optional[str] = None,
            topics: Optional[Sequence[str]] = None) -> RepositoryTopics
    func GetRepositoryTopics(ctx *Context, name string, id IDInput, state *RepositoryTopicsState, opts ...ResourceOption) (*RepositoryTopics, error)
    public static RepositoryTopics Get(string name, Input<string> id, RepositoryTopicsState? state, CustomResourceOptions? opts = null)
    public static RepositoryTopics get(String name, Output<String> id, RepositoryTopicsState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Repository string
    The repository name.
    Topics List<string>
    A list of topics to add to the repository.
    Repository string
    The repository name.
    Topics []string
    A list of topics to add to the repository.
    repository String
    The repository name.
    topics List<String>
    A list of topics to add to the repository.
    repository string
    The repository name.
    topics string[]
    A list of topics to add to the repository.
    repository str
    The repository name.
    topics Sequence[str]
    A list of topics to add to the repository.
    repository String
    The repository name.
    topics List<String>
    A list of topics to add to the repository.

    Import

    Repository topics can be imported using the name of the repository.

    $ pulumi import github:index/repositoryTopics:RepositoryTopics terraform terraform
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v6.1.0 published on Monday, Mar 11, 2024 by Pulumi