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

gitlab.ProjectShareGroup

Explore with Pulumi AI

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

    The gitlab.ProjectShareGroup resource allows to manage the lifecycle of project shared with a group.

    Upstream API: GitLab REST API docs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gitlab from "@pulumi/gitlab";
    
    const test = new gitlab.ProjectShareGroup("test", {
        groupAccess: "guest",
        groupId: 1337,
        project: "12345",
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    test = gitlab.ProjectShareGroup("test",
        group_access="guest",
        group_id=1337,
        project="12345")
    
    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 {
    		_, err := gitlab.NewProjectShareGroup(ctx, "test", &gitlab.ProjectShareGroupArgs{
    			GroupAccess: pulumi.String("guest"),
    			GroupId:     pulumi.Int(1337),
    			Project:     pulumi.String("12345"),
    		})
    		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 test = new GitLab.ProjectShareGroup("test", new()
        {
            GroupAccess = "guest",
            GroupId = 1337,
            Project = "12345",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gitlab.ProjectShareGroup;
    import com.pulumi.gitlab.ProjectShareGroupArgs;
    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 test = new ProjectShareGroup("test", ProjectShareGroupArgs.builder()        
                .groupAccess("guest")
                .groupId(1337)
                .project("12345")
                .build());
    
        }
    }
    
    resources:
      test:
        type: gitlab:ProjectShareGroup
        properties:
          groupAccess: guest
          groupId: 1337
          project: '12345'
    

    Create ProjectShareGroup Resource

    new ProjectShareGroup(name: string, args: ProjectShareGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ProjectShareGroup(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          access_level: Optional[str] = None,
                          group_access: Optional[str] = None,
                          group_id: Optional[int] = None,
                          project: Optional[str] = None)
    @overload
    def ProjectShareGroup(resource_name: str,
                          args: ProjectShareGroupArgs,
                          opts: Optional[ResourceOptions] = None)
    func NewProjectShareGroup(ctx *Context, name string, args ProjectShareGroupArgs, opts ...ResourceOption) (*ProjectShareGroup, error)
    public ProjectShareGroup(string name, ProjectShareGroupArgs args, CustomResourceOptions? opts = null)
    public ProjectShareGroup(String name, ProjectShareGroupArgs args)
    public ProjectShareGroup(String name, ProjectShareGroupArgs args, CustomResourceOptions options)
    
    type: gitlab:ProjectShareGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ProjectShareGroupArgs
    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 ProjectShareGroupArgs
    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 ProjectShareGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectShareGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectShareGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    GroupId int
    The id of the group.
    Project string
    The ID or URL-encoded path of the project.
    AccessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    GroupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    GroupId int
    The id of the group.
    Project string
    The ID or URL-encoded path of the project.
    AccessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    GroupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId Integer
    The id of the group.
    project String
    The ID or URL-encoded path of the project.
    accessLevel String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId number
    The id of the group.
    project string
    The ID or URL-encoded path of the project.
    accessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    group_id int
    The id of the group.
    project str
    The ID or URL-encoded path of the project.
    access_level str
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    group_access str
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId Number
    The id of the group.
    project String
    The ID or URL-encoded path of the project.
    accessLevel String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Outputs

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

    Get an existing ProjectShareGroup 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?: ProjectShareGroupState, opts?: CustomResourceOptions): ProjectShareGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_level: Optional[str] = None,
            group_access: Optional[str] = None,
            group_id: Optional[int] = None,
            project: Optional[str] = None) -> ProjectShareGroup
    func GetProjectShareGroup(ctx *Context, name string, id IDInput, state *ProjectShareGroupState, opts ...ResourceOption) (*ProjectShareGroup, error)
    public static ProjectShareGroup Get(string name, Input<string> id, ProjectShareGroupState? state, CustomResourceOptions? opts = null)
    public static ProjectShareGroup get(String name, Output<String> id, ProjectShareGroupState 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:
    AccessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    GroupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    GroupId int
    The id of the group.
    Project string
    The ID or URL-encoded path of the project.
    AccessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    GroupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    GroupId int
    The id of the group.
    Project string
    The ID or URL-encoded path of the project.
    accessLevel String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId Integer
    The id of the group.
    project String
    The ID or URL-encoded path of the project.
    accessLevel string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess string
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId number
    The id of the group.
    project string
    The ID or URL-encoded path of the project.
    access_level str
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    group_access str
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    group_id int
    The id of the group.
    project str
    The ID or URL-encoded path of the project.
    accessLevel String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master

    Deprecated:Use group_access instead of the access_level attribute.

    groupAccess String
    The access level to grant the group for the project. Valid values are: no one, minimal, guest, reporter, developer, maintainer, owner, master
    groupId Number
    The id of the group.
    project String
    The ID or URL-encoded path of the project.

    Import

    GitLab project group shares can be imported using an id made up of projectid:groupid, e.g.

    $ pulumi import gitlab:index/projectShareGroup:ProjectShareGroup test 12345:1337
    

    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