1. Packages
  2. Gitlab Provider
  3. API Docs
  4. getGroupBillableMemberMemberships
GitLab v8.10.0 published on Friday, Mar 21, 2025 by Pulumi

gitlab.getGroupBillableMemberMemberships

Explore with Pulumi AI

gitlab logo
GitLab v8.10.0 published on Friday, Mar 21, 2025 by Pulumi

    The gitlab.getGroupBillableMemberMemberships data source allows (sub)group- and project-memberships of a billable member of a group to be retrieved by either the user ID, username or email address.

    You must be an administrator!

    When using the email attribute, an exact match is not guaranteed. The most related match will be returned. Starting with GitLab 16.6, the most related match will prioritize an exact match if one is available.

    Upstream API: GitLab REST API docs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gitlab from "@pulumi/gitlab";
    
    const testUserMembership = gitlab.getGroupBillableMemberMemberships({
        userId: 21,
        groupId: "42",
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    test_user_membership = gitlab.get_group_billable_member_memberships(user_id=21,
        group_id="42")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gitlab/sdk/v8/go/gitlab"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gitlab.GetGroupBillableMemberMemberships(ctx, &gitlab.GetGroupBillableMemberMembershipsArgs{
    			UserId:  21,
    			GroupId: "42",
    		}, nil)
    		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 testUserMembership = GitLab.GetGroupBillableMemberMemberships.Invoke(new()
        {
            UserId = 21,
            GroupId = "42",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gitlab.GitlabFunctions;
    import com.pulumi.gitlab.inputs.GetGroupBillableMemberMembershipsArgs;
    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 testUserMembership = GitlabFunctions.getGroupBillableMemberMemberships(GetGroupBillableMemberMembershipsArgs.builder()
                .userId(21)
                .groupId(42)
                .build());
    
        }
    }
    
    variables:
      testUserMembership:
        fn::invoke:
          function: gitlab:getGroupBillableMemberMemberships
          arguments:
            userId: 21
            groupId: 42
    

    Using getGroupBillableMemberMemberships

    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 getGroupBillableMemberMemberships(args: GetGroupBillableMemberMembershipsArgs, opts?: InvokeOptions): Promise<GetGroupBillableMemberMembershipsResult>
    function getGroupBillableMemberMembershipsOutput(args: GetGroupBillableMemberMembershipsOutputArgs, opts?: InvokeOptions): Output<GetGroupBillableMemberMembershipsResult>
    def get_group_billable_member_memberships(group_id: Optional[str] = None,
                                              user_id: Optional[int] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetGroupBillableMemberMembershipsResult
    def get_group_billable_member_memberships_output(group_id: Optional[pulumi.Input[str]] = None,
                                              user_id: Optional[pulumi.Input[int]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetGroupBillableMemberMembershipsResult]
    func GetGroupBillableMemberMemberships(ctx *Context, args *GetGroupBillableMemberMembershipsArgs, opts ...InvokeOption) (*GetGroupBillableMemberMembershipsResult, error)
    func GetGroupBillableMemberMembershipsOutput(ctx *Context, args *GetGroupBillableMemberMembershipsOutputArgs, opts ...InvokeOption) GetGroupBillableMemberMembershipsResultOutput

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

    public static class GetGroupBillableMemberMemberships 
    {
        public static Task<GetGroupBillableMemberMembershipsResult> InvokeAsync(GetGroupBillableMemberMembershipsArgs args, InvokeOptions? opts = null)
        public static Output<GetGroupBillableMemberMembershipsResult> Invoke(GetGroupBillableMemberMembershipsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGroupBillableMemberMembershipsResult> getGroupBillableMemberMemberships(GetGroupBillableMemberMembershipsArgs args, InvokeOptions options)
    public static Output<GetGroupBillableMemberMembershipsResult> getGroupBillableMemberMemberships(GetGroupBillableMemberMembershipsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gitlab:index/getGroupBillableMemberMemberships:getGroupBillableMemberMemberships
      arguments:
        # arguments dictionary

    The following arguments are supported:

    GroupId string
    The ID of the group.
    UserId int
    The ID of the user.
    GroupId string
    The ID of the group.
    UserId int
    The ID of the user.
    groupId String
    The ID of the group.
    userId Integer
    The ID of the user.
    groupId string
    The ID of the group.
    userId number
    The ID of the user.
    group_id str
    The ID of the group.
    user_id int
    The ID of the user.
    groupId String
    The ID of the group.
    userId Number
    The ID of the user.

    getGroupBillableMemberMemberships Result

    The following output properties are available:

    GroupId string
    The ID of the group.
    Id string
    The id of the data source. It will always be equal to the user_id
    Memberships List<Pulumi.GitLab.Outputs.GetGroupBillableMemberMembershipsMembership>
    group- and/or project-memberships of the user.
    UserId int
    The ID of the user.
    GroupId string
    The ID of the group.
    Id string
    The id of the data source. It will always be equal to the user_id
    Memberships []GetGroupBillableMemberMembershipsMembership
    group- and/or project-memberships of the user.
    UserId int
    The ID of the user.
    groupId String
    The ID of the group.
    id String
    The id of the data source. It will always be equal to the user_id
    memberships List<GetGroupBillableMemberMembershipsMembership>
    group- and/or project-memberships of the user.
    userId Integer
    The ID of the user.
    groupId string
    The ID of the group.
    id string
    The id of the data source. It will always be equal to the user_id
    memberships GetGroupBillableMemberMembershipsMembership[]
    group- and/or project-memberships of the user.
    userId number
    The ID of the user.
    group_id str
    The ID of the group.
    id str
    The id of the data source. It will always be equal to the user_id
    memberships Sequence[GetGroupBillableMemberMembershipsMembership]
    group- and/or project-memberships of the user.
    user_id int
    The ID of the user.
    groupId String
    The ID of the group.
    id String
    The id of the data source. It will always be equal to the user_id
    memberships List<Property Map>
    group- and/or project-memberships of the user.
    userId Number
    The ID of the user.

    Supporting Types

    GetGroupBillableMemberMembershipsMembership

    AccessLevel string
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    CreatedAt string
    Datetime when the membership was first added.
    ExpiresAt string
    Date when the membership will end.
    Id int
    The id of the membership.
    SourceFullName string
    Breadcrumb-style, full display-name of the group or project.
    SourceId int
    The id of the group or project, the user is a (direct) member of.
    SourceMembersUrl string
    URL to the members-page of the group or project.
    AccessLevel string
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    CreatedAt string
    Datetime when the membership was first added.
    ExpiresAt string
    Date when the membership will end.
    Id int
    The id of the membership.
    SourceFullName string
    Breadcrumb-style, full display-name of the group or project.
    SourceId int
    The id of the group or project, the user is a (direct) member of.
    SourceMembersUrl string
    URL to the members-page of the group or project.
    accessLevel String
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    createdAt String
    Datetime when the membership was first added.
    expiresAt String
    Date when the membership will end.
    id Integer
    The id of the membership.
    sourceFullName String
    Breadcrumb-style, full display-name of the group or project.
    sourceId Integer
    The id of the group or project, the user is a (direct) member of.
    sourceMembersUrl String
    URL to the members-page of the group or project.
    accessLevel string
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    createdAt string
    Datetime when the membership was first added.
    expiresAt string
    Date when the membership will end.
    id number
    The id of the membership.
    sourceFullName string
    Breadcrumb-style, full display-name of the group or project.
    sourceId number
    The id of the group or project, the user is a (direct) member of.
    sourceMembersUrl string
    URL to the members-page of the group or project.
    access_level str
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    created_at str
    Datetime when the membership was first added.
    expires_at str
    Date when the membership will end.
    id int
    The id of the membership.
    source_full_name str
    Breadcrumb-style, full display-name of the group or project.
    source_id int
    The id of the group or project, the user is a (direct) member of.
    source_members_url str
    URL to the members-page of the group or project.
    accessLevel String
    Access-level of the member. For details see: https://docs.gitlab.com/api/access_requests/#valid-access-levels
    createdAt String
    Datetime when the membership was first added.
    expiresAt String
    Date when the membership will end.
    id Number
    The id of the membership.
    sourceFullName String
    Breadcrumb-style, full display-name of the group or project.
    sourceId Number
    The id of the group or project, the user is a (direct) member of.
    sourceMembersUrl String
    URL to the members-page of the group or project.

    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 v8.10.0 published on Friday, Mar 21, 2025 by Pulumi