mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package examples
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/bufbuild/connect-go"
|
|
"github.com/gitpod-io/gitpod/components/public-api/go/client"
|
|
v1 "github.com/gitpod-io/gitpod/components/public-api/go/experimental/v1"
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func ExampleListTeams() {
|
|
token := "gitpod_pat_example.personal-access-token"
|
|
|
|
gitpod, err := client.New(client.WithCredentials(token))
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Failed to construct gitpod client %v", err)
|
|
return
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
|
defer cancel()
|
|
|
|
response, err := gitpod.Teams.ListTeams(ctx, connect.NewRequest(&v1.ListTeamsRequest{}))
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Failed to list teams %v", err)
|
|
return
|
|
}
|
|
|
|
fmt.Fprintf(os.Stdout, "Retrieved teams %v", response.Msg.GetTeams())
|
|
}
|
|
|
|
func ExampleGetTeam() {
|
|
token := "gitpod_pat_example.personal-access-token"
|
|
|
|
gitpod, err := client.New(client.WithCredentials(token))
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Failed to construct gitpod client %v", err)
|
|
return
|
|
}
|
|
|
|
response, err := gitpod.Teams.GetTeam(context.Background(), connect.NewRequest(&v1.GetTeamRequest{
|
|
TeamId: "<TEAM_ID>",
|
|
}))
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Failed to get team %v", err)
|
|
return
|
|
}
|
|
|
|
fmt.Fprintf(os.Stdout, "Retrieved team %v", response.Msg.GetTeam())
|
|
}
|