1. Packages
  2. GitLab
  3. API Docs
  4. GroupProjectFileTemplate
GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi

gitlab.GroupProjectFileTemplate

Explore with Pulumi AI

gitlab logo
GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi

    The gitlab.GroupProjectFileTemplate resource allows setting a project from which custom file templates will be loaded. In order to use this resource, the project selected must be a direct child of the group selected. After the resource has run, gitlab_project_template.template_project_id is available for use. For more information about which file types are available as templates, view GitLab’s documentation

    This resource requires a GitLab Enterprise instance with a Premium license.

    Upstream API: GitLab REST API docs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gitlab from "@pulumi/gitlab";
    
    const foo = new gitlab.Group("foo", {
        path: "group",
        description: "An example group",
    });
    const bar = new gitlab.Project("bar", {
        description: "contains file templates",
        visibilityLevel: "public",
        namespaceId: foo.id,
    });
    const templateLink = new gitlab.GroupProjectFileTemplate("templateLink", {
        groupId: foo.id,
        fileTemplateProjectId: bar.id,
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    foo = gitlab.Group("foo",
        path="group",
        description="An example group")
    bar = gitlab.Project("bar",
        description="contains file templates",
        visibility_level="public",
        namespace_id=foo.id)
    template_link = gitlab.GroupProjectFileTemplate("templateLink",
        group_id=foo.id,
        file_template_project_id=bar.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gitlab/sdk/v6/go/gitlab"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		foo, err := gitlab.NewGroup(ctx, "foo", &gitlab.GroupArgs{
    			Path:        pulumi.String("group"),
    			Description: pulumi.String("An example group"),
    		})
    		if err != nil {
    			return err
    		}
    		bar, err := gitlab.NewProject(ctx, "bar", &gitlab.ProjectArgs{
    			Description:     pulumi.String("contains file templates"),
    			VisibilityLevel: pulumi.String("public"),
    			NamespaceId:     foo.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = gitlab.NewGroupProjectFileTemplate(ctx, "templateLink", &gitlab.GroupProjectFileTemplateArgs{
    			GroupId:               foo.ID(),
    			FileTemplateProjectId: bar.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using GitLab = Pulumi.GitLab;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new GitLab.Group("foo", new()
        {
            Path = "group",
            Description = "An example group",
        });
    
        var bar = new GitLab.Project("bar", new()
        {
            Description = "contains file templates",
            VisibilityLevel = "public",
            NamespaceId = foo.Id,
        });
    
        var templateLink = new GitLab.GroupProjectFileTemplate("templateLink", new()
        {
            GroupId = foo.Id,
            FileTemplateProjectId = bar.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gitlab.Group;
    import com.pulumi.gitlab.GroupArgs;
    import com.pulumi.gitlab.Project;
    import com.pulumi.gitlab.ProjectArgs;
    import com.pulumi.gitlab.GroupProjectFileTemplate;
    import com.pulumi.gitlab.GroupProjectFileTemplateArgs;
    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) {
            var foo = new Group("foo", GroupArgs.builder()        
                .path("group")
                .description("An example group")
                .build());
    
            var bar = new Project("bar", ProjectArgs.builder()        
                .description("contains file templates")
                .visibilityLevel("public")
                .namespaceId(foo.id())
                .build());
    
            var templateLink = new GroupProjectFileTemplate("templateLink", GroupProjectFileTemplateArgs.builder()        
                .groupId(foo.id())
                .fileTemplateProjectId(bar.id())
                .build());
    
        }
    }
    
    resources:
      foo:
        type: gitlab:Group
        properties:
          path: group
          description: An example group
      bar:
        type: gitlab:Project
        properties:
          description: contains file templates
          visibilityLevel: public
          namespaceId: ${foo.id}
      templateLink:
        type: gitlab:GroupProjectFileTemplate
        properties:
          groupId: ${foo.id}
          fileTemplateProjectId: ${bar.id}
    

    Create GroupProjectFileTemplate Resource

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

    Constructor syntax

    new GroupProjectFileTemplate(name: string, args: GroupProjectFileTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def GroupProjectFileTemplate(resource_name: str,
                                 args: GroupProjectFileTemplateArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def GroupProjectFileTemplate(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 file_template_project_id: Optional[int] = None,
                                 group_id: Optional[int] = None)
    func NewGroupProjectFileTemplate(ctx *Context, name string, args GroupProjectFileTemplateArgs, opts ...ResourceOption) (*GroupProjectFileTemplate, error)
    public GroupProjectFileTemplate(string name, GroupProjectFileTemplateArgs args, CustomResourceOptions? opts = null)
    public GroupProjectFileTemplate(String name, GroupProjectFileTemplateArgs args)
    public GroupProjectFileTemplate(String name, GroupProjectFileTemplateArgs args, CustomResourceOptions options)
    
    type: gitlab:GroupProjectFileTemplate
    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 GroupProjectFileTemplateArgs
    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 GroupProjectFileTemplateArgs
    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 GroupProjectFileTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupProjectFileTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupProjectFileTemplateArgs
    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 groupProjectFileTemplateResource = new GitLab.GroupProjectFileTemplate("groupProjectFileTemplateResource", new()
    {
        FileTemplateProjectId = 0,
        GroupId = 0,
    });
    
    example, err := gitlab.NewGroupProjectFileTemplate(ctx, "groupProjectFileTemplateResource", &gitlab.GroupProjectFileTemplateArgs{
    	FileTemplateProjectId: pulumi.Int(0),
    	GroupId:               pulumi.Int(0),
    })
    
    var groupProjectFileTemplateResource = new GroupProjectFileTemplate("groupProjectFileTemplateResource", GroupProjectFileTemplateArgs.builder()        
        .fileTemplateProjectId(0)
        .groupId(0)
        .build());
    
    group_project_file_template_resource = gitlab.GroupProjectFileTemplate("groupProjectFileTemplateResource",
        file_template_project_id=0,
        group_id=0)
    
    const groupProjectFileTemplateResource = new gitlab.GroupProjectFileTemplate("groupProjectFileTemplateResource", {
        fileTemplateProjectId: 0,
        groupId: 0,
    });
    
    type: gitlab:GroupProjectFileTemplate
    properties:
        fileTemplateProjectId: 0
        groupId: 0
    

    GroupProjectFileTemplate 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 GroupProjectFileTemplate resource accepts the following input properties:

    FileTemplateProjectId int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    GroupId int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    FileTemplateProjectId int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    GroupId int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId Integer
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId Integer
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId number
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId number
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    file_template_project_id int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    group_id int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId Number
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId Number
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GroupProjectFileTemplate 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 GroupProjectFileTemplate Resource

    Get an existing GroupProjectFileTemplate 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?: GroupProjectFileTemplateState, opts?: CustomResourceOptions): GroupProjectFileTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            file_template_project_id: Optional[int] = None,
            group_id: Optional[int] = None) -> GroupProjectFileTemplate
    func GetGroupProjectFileTemplate(ctx *Context, name string, id IDInput, state *GroupProjectFileTemplateState, opts ...ResourceOption) (*GroupProjectFileTemplate, error)
    public static GroupProjectFileTemplate Get(string name, Input<string> id, GroupProjectFileTemplateState? state, CustomResourceOptions? opts = null)
    public static GroupProjectFileTemplate get(String name, Output<String> id, GroupProjectFileTemplateState 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:
    FileTemplateProjectId int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    GroupId int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    FileTemplateProjectId int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    GroupId int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId Integer
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId Integer
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId number
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId number
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    file_template_project_id int
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    group_id int
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id
    fileTemplateProjectId Number
    The ID of the project that will be used for file templates. This project must be the direct child of the project defined by the group_id
    groupId Number
    The ID of the group that will use the file template project. This group must be the direct parent of the project defined by project_id

    Package Details

    Repository
    GitLab pulumi/pulumi-gitlab
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the gitlab Terraform Provider.
    gitlab logo
    GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi