Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit 05c7374

Browse files
authored
Merge pull request #1907 from dieterdemeyer/service-account-token-expiration-support
Add support for service account token expiration
2 parents 1ccfef0 + f21d2ce commit 05c7374

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

group_serviceaccounts.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ func (s *GroupsService) CreateServiceAccount(gid interface{}, options ...Request
6262
// GitLab API docs:
6363
// https://docs.gitlab.com/ee/api/groups.html#create-personal-access-token-for-service-account-user
6464
type CreateServiceAccountPersonalAccessTokenOptions struct {
65-
Scopes *[]string `url:"scopes,omitempty" json:"scopes,omitempty"`
66-
Name *string `url:"name,omitempty" json:"name,omitempty"`
65+
Scopes *[]string `url:"scopes,omitempty" json:"scopes,omitempty"`
66+
Name *string `url:"name,omitempty" json:"name,omitempty"`
67+
ExpiresAt *ISOTime `url:"expires_at,omitempty" json:"expires_at,omitempty"`
6768
}
6869

6970
// CreateServiceAccountPersonalAccessToken add a new Personal Access Token for a

group_serviceaccounts_test.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import (
2222
"reflect"
2323
"testing"
2424
"time"
25+
26+
"github.com/stretchr/testify/require"
2527
)
2628

2729
func TestCreateServiceAccount(t *testing.T) {
@@ -72,9 +74,14 @@ func TestCreateServiceAccountPersonalAccessToken(t *testing.T) {
7274
"token":"random_token"
7375
}`)
7476
})
77+
78+
expireTime, err := ParseISOTime("2024-06-12")
79+
require.NoError(t, err)
80+
7581
options := &CreateServiceAccountPersonalAccessTokenOptions{
76-
Scopes: Ptr([]string{"api"}),
77-
Name: Ptr("service_account_token"),
82+
Scopes: Ptr([]string{"api"}),
83+
Name: Ptr("service_account_token"),
84+
ExpiresAt: Ptr(expireTime),
7885
}
7986
pat, _, err := client.Groups.CreateServiceAccountPersonalAccessToken(1, 57, options)
8087
if err != nil {

0 commit comments

Comments
 (0)