config

package
v0.2.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 5, 2026 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Overview

Code generated by baton-sdk. DO NOT EDIT!!!

Index

Constants

View Source
const (
	GithubAppGroup                 = "github-app-group"
	GithubPersonalAccessTokenGroup = "personal-access-token-group"
)

Variables

View Source
var Config = field.NewConfiguration(
	[]field.SchemaField{
		accessTokenField,
		orgsField,
		EnterprisesField,
		instanceUrlField,
		syncSecrets,
		omitArchivedRepositories,
		appIDField,
		appPrivateKeyPath,
		orgField,
	},
	field.WithConnectorDisplayName("GitHub v2"),
	field.WithHelpUrl("/docs/baton/github-v2"),
	field.WithIconUrl("/static/app-icons/github.svg"),
	field.WithFieldGroups([]field.SchemaFieldGroup{
		{
			Name:        GithubPersonalAccessTokenGroup,
			DisplayName: "Personal access token",
			HelpText:    "Use a personal access token for authentication.",
			Fields:      []field.SchemaField{accessTokenField, orgsField, omitArchivedRepositories},
			Default:     true,
		},
		{
			Name:        GithubAppGroup,
			DisplayName: "GitHub app",
			HelpText:    "Use a github app for authentication",
			Fields:      []field.SchemaField{appIDField, appPrivateKeyPath, orgField, syncSecrets, omitArchivedRepositories},
			Default:     false,
		},
	}),
)
View Source
var (
	EnterprisesField = field.StringSliceField(
		"enterprises",
		field.WithDisplayName("Enterprises"),
		field.WithDescription("Sync enterprise roles, must be an admin of the enterprise."),
	)
)

TODO (mb): Make sure we don't need field.WithRequired(true) for required fields.

Functions

This section is empty.

Types

type Github

type Github struct {
	Token                    string   `mapstructure:"token"`
	Orgs                     []string `mapstructure:"orgs"`
	Enterprises              []string `mapstructure:"enterprises"`
	InstanceUrl              string   `mapstructure:"instance-url"`
	SyncSecrets              bool     `mapstructure:"sync-secrets"`
	OmitArchivedRepositories bool     `mapstructure:"omit-archived-repositories"`
	AppId                    string   `mapstructure:"app-id"`
	AppPrivatekeyPath        []byte   `mapstructure:"app-privatekey-path"`
	Org                      string   `mapstructure:"org"`
}

func (*Github) GetBool

func (c *Github) GetBool(fieldName string) bool

func (*Github) GetInt

func (c *Github) GetInt(fieldName string) int

func (*Github) GetString

func (c *Github) GetString(fieldName string) string

func (*Github) GetStringMap

func (c *Github) GetStringMap(fieldName string) map[string]any

func (*Github) GetStringSlice

func (c *Github) GetStringSlice(fieldName string) []string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL