query

package
v3.8.4 Latest Latest
Warning

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

Go to latest
Published: Oct 8, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BooleanInput added in v3.8.0

type BooleanInput struct {
	Value bool `json:"value"`
}

func (*BooleanInput) GetValue added in v3.8.0

func (v *BooleanInput) GetValue() bool

GetValue returns BooleanInput.Value, and is useful for accessing the field via an interface.

type CreateExtensionCellOutputCreateExtensionCellOutput added in v3.8.0

type CreateExtensionCellOutputCreateExtensionCellOutput struct {
	Id           string `json:"id"`
	HtmlUrl      string `json:"htmlUrl"`
	ExitCode     int    `json:"exitCode"`
	IsSlackReady bool   `json:"isSlackReady"`
}

CreateExtensionCellOutputCreateExtensionCellOutput includes the requested fields of the GraphQL type CellOutput.

func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetExitCode added in v3.8.0

GetExitCode returns CreateExtensionCellOutputCreateExtensionCellOutput.ExitCode, and is useful for accessing the field via an interface.

func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetHtmlUrl added in v3.8.0

GetHtmlUrl returns CreateExtensionCellOutputCreateExtensionCellOutput.HtmlUrl, and is useful for accessing the field via an interface.

func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetId added in v3.8.0

GetId returns CreateExtensionCellOutputCreateExtensionCellOutput.Id, and is useful for accessing the field via an interface.

func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetIsSlackReady added in v3.8.0

GetIsSlackReady returns CreateExtensionCellOutputCreateExtensionCellOutput.IsSlackReady, and is useful for accessing the field via an interface.

type CreateExtensionCellOutputResponse added in v3.8.0

type CreateExtensionCellOutputResponse struct {
	CreateExtensionCellOutput CreateExtensionCellOutputCreateExtensionCellOutput `json:"createExtensionCellOutput"`
}

CreateExtensionCellOutputResponse is returned by CreateExtensionCellOutput on success.

func CreateExtensionCellOutput added in v3.8.0

func CreateExtensionCellOutput(
	ctx context.Context,
	client graphql.Client,
	input ReporterInput,
) (*CreateExtensionCellOutputResponse, error)

func (*CreateExtensionCellOutputResponse) GetCreateExtensionCellOutput added in v3.8.0

GetCreateExtensionCellOutput returns CreateExtensionCellOutputResponse.CreateExtensionCellOutput, and is useful for accessing the field via an interface.

type Int64Input added in v3.8.0

type Int64Input struct {
	Value string `json:"value"`
}

func (*Int64Input) GetValue added in v3.8.0

func (v *Int64Input) GetValue() string

GetValue returns Int64Input.Value, and is useful for accessing the field via an interface.

type ReporterCellExecutionSummaryInput added in v3.8.0

type ReporterCellExecutionSummaryInput struct {
	ExecutionOrder UInt32                              `json:"executionOrder"`
	Success        BooleanInput                        `json:"success"`
	Timing         ReporterExecutionSummaryTimingInput `json:"timing"`
}

func (*ReporterCellExecutionSummaryInput) GetExecutionOrder added in v3.8.0

func (v *ReporterCellExecutionSummaryInput) GetExecutionOrder() UInt32

GetExecutionOrder returns ReporterCellExecutionSummaryInput.ExecutionOrder, and is useful for accessing the field via an interface.

func (*ReporterCellExecutionSummaryInput) GetSuccess added in v3.8.0

GetSuccess returns ReporterCellExecutionSummaryInput.Success, and is useful for accessing the field via an interface.

func (*ReporterCellExecutionSummaryInput) GetTiming added in v3.8.0

GetTiming returns ReporterCellExecutionSummaryInput.Timing, and is useful for accessing the field via an interface.

type ReporterCellInput added in v3.8.0

type ReporterCellInput struct {
	Kind             int                               `json:"kind"`
	Value            string                            `json:"value"`
	LanguageId       string                            `json:"languageId"`
	Metadata         ReporterCellMetadataInput         `json:"metadata"`
	TextRange        ReporterTextRangeInput            `json:"textRange"`
	Outputs          []ReporterCellOutputInput         `json:"outputs"`
	ExecutionSummary ReporterCellExecutionSummaryInput `json:"executionSummary"`
}

func (*ReporterCellInput) GetExecutionSummary added in v3.8.0

func (v *ReporterCellInput) GetExecutionSummary() ReporterCellExecutionSummaryInput

GetExecutionSummary returns ReporterCellInput.ExecutionSummary, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetKind added in v3.8.0

func (v *ReporterCellInput) GetKind() int

GetKind returns ReporterCellInput.Kind, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetLanguageId added in v3.8.0

func (v *ReporterCellInput) GetLanguageId() string

GetLanguageId returns ReporterCellInput.LanguageId, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetMetadata added in v3.8.0

GetMetadata returns ReporterCellInput.Metadata, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetOutputs added in v3.8.0

func (v *ReporterCellInput) GetOutputs() []ReporterCellOutputInput

GetOutputs returns ReporterCellInput.Outputs, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetTextRange added in v3.8.0

func (v *ReporterCellInput) GetTextRange() ReporterTextRangeInput

GetTextRange returns ReporterCellInput.TextRange, and is useful for accessing the field via an interface.

func (*ReporterCellInput) GetValue added in v3.8.0

func (v *ReporterCellInput) GetValue() string

GetValue returns ReporterCellInput.Value, and is useful for accessing the field via an interface.

type ReporterCellMetadataInput added in v3.8.0

type ReporterCellMetadataInput struct {
	Id       string `json:"id"`
	Name     string `json:"name"`
	Category string `json:"category"`
	MimeType string `json:"mimeType"`
}

func (*ReporterCellMetadataInput) GetCategory added in v3.8.0

func (v *ReporterCellMetadataInput) GetCategory() string

GetCategory returns ReporterCellMetadataInput.Category, and is useful for accessing the field via an interface.

func (*ReporterCellMetadataInput) GetId added in v3.8.0

func (v *ReporterCellMetadataInput) GetId() string

GetId returns ReporterCellMetadataInput.Id, and is useful for accessing the field via an interface.

func (*ReporterCellMetadataInput) GetMimeType added in v3.8.0

func (v *ReporterCellMetadataInput) GetMimeType() string

GetMimeType returns ReporterCellMetadataInput.MimeType, and is useful for accessing the field via an interface.

func (*ReporterCellMetadataInput) GetName added in v3.8.0

func (v *ReporterCellMetadataInput) GetName() string

GetName returns ReporterCellMetadataInput.Name, and is useful for accessing the field via an interface.

type ReporterCellOutputInput added in v3.8.0

type ReporterCellOutputInput struct {
	Items       []ReporterCellOutputItemInput      `json:"items"`
	Metadata    string                             `json:"metadata"`
	ProcessInfo ReporterCellOutputProcessInfoInput `json:"processInfo"`
}

func (*ReporterCellOutputInput) GetItems added in v3.8.0

GetItems returns ReporterCellOutputInput.Items, and is useful for accessing the field via an interface.

func (*ReporterCellOutputInput) GetMetadata added in v3.8.0

func (v *ReporterCellOutputInput) GetMetadata() string

GetMetadata returns ReporterCellOutputInput.Metadata, and is useful for accessing the field via an interface.

func (*ReporterCellOutputInput) GetProcessInfo added in v3.8.0

GetProcessInfo returns ReporterCellOutputInput.ProcessInfo, and is useful for accessing the field via an interface.

type ReporterCellOutputItemInput added in v3.8.0

type ReporterCellOutputItemInput struct {
	Data string `json:"data"`
	Type string `json:"type"`
	Mime string `json:"mime"`
}

func (*ReporterCellOutputItemInput) GetData added in v3.8.0

func (v *ReporterCellOutputItemInput) GetData() string

GetData returns ReporterCellOutputItemInput.Data, and is useful for accessing the field via an interface.

func (*ReporterCellOutputItemInput) GetMime added in v3.8.0

func (v *ReporterCellOutputItemInput) GetMime() string

GetMime returns ReporterCellOutputItemInput.Mime, and is useful for accessing the field via an interface.

func (*ReporterCellOutputItemInput) GetType added in v3.8.0

func (v *ReporterCellOutputItemInput) GetType() string

GetType returns ReporterCellOutputItemInput.Type, and is useful for accessing the field via an interface.

type ReporterCellOutputProcessInfoInput added in v3.8.0

type ReporterCellOutputProcessInfoInput struct {
	ExitReason ReporterProcessInfoExitReasonInput `json:"exitReason"`
	Pid        Int64Input                         `json:"pid"`
}

func (*ReporterCellOutputProcessInfoInput) GetExitReason added in v3.8.0

GetExitReason returns ReporterCellOutputProcessInfoInput.ExitReason, and is useful for accessing the field via an interface.

func (*ReporterCellOutputProcessInfoInput) GetPid added in v3.8.0

GetPid returns ReporterCellOutputProcessInfoInput.Pid, and is useful for accessing the field via an interface.

type ReporterDeviceInput added in v3.8.0

type ReporterDeviceInput struct {
	MacAddress     string `json:"macAddress"`
	Hostname       string `json:"hostname"`
	Platform       string `json:"platform"`
	Release        string `json:"release"`
	Arch           string `json:"arch"`
	Vendor         string `json:"vendor"`
	Shell          string `json:"shell"`
	VsAppHost      string `json:"vsAppHost"`
	VsAppName      string `json:"vsAppName"`
	VsAppSessionId string `json:"vsAppSessionId"`
	VsMachineId    string `json:"vsMachineId"`
	VsMetadata     string `json:"vsMetadata"`
}

func (*ReporterDeviceInput) GetArch added in v3.8.0

func (v *ReporterDeviceInput) GetArch() string

GetArch returns ReporterDeviceInput.Arch, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetHostname added in v3.8.0

func (v *ReporterDeviceInput) GetHostname() string

GetHostname returns ReporterDeviceInput.Hostname, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetMacAddress added in v3.8.0

func (v *ReporterDeviceInput) GetMacAddress() string

GetMacAddress returns ReporterDeviceInput.MacAddress, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetPlatform added in v3.8.0

func (v *ReporterDeviceInput) GetPlatform() string

GetPlatform returns ReporterDeviceInput.Platform, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetRelease added in v3.8.0

func (v *ReporterDeviceInput) GetRelease() string

GetRelease returns ReporterDeviceInput.Release, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetShell added in v3.8.0

func (v *ReporterDeviceInput) GetShell() string

GetShell returns ReporterDeviceInput.Shell, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVendor added in v3.8.0

func (v *ReporterDeviceInput) GetVendor() string

GetVendor returns ReporterDeviceInput.Vendor, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVsAppHost added in v3.8.0

func (v *ReporterDeviceInput) GetVsAppHost() string

GetVsAppHost returns ReporterDeviceInput.VsAppHost, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVsAppName added in v3.8.0

func (v *ReporterDeviceInput) GetVsAppName() string

GetVsAppName returns ReporterDeviceInput.VsAppName, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVsAppSessionId added in v3.8.0

func (v *ReporterDeviceInput) GetVsAppSessionId() string

GetVsAppSessionId returns ReporterDeviceInput.VsAppSessionId, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVsMachineId added in v3.8.0

func (v *ReporterDeviceInput) GetVsMachineId() string

GetVsMachineId returns ReporterDeviceInput.VsMachineId, and is useful for accessing the field via an interface.

func (*ReporterDeviceInput) GetVsMetadata added in v3.8.0

func (v *ReporterDeviceInput) GetVsMetadata() string

GetVsMetadata returns ReporterDeviceInput.VsMetadata, and is useful for accessing the field via an interface.

type ReporterExecutionSummaryTimingInput added in v3.8.0

type ReporterExecutionSummaryTimingInput struct {
	StartTime Int64Input `json:"startTime"`
	EndTime   Int64Input `json:"endTime"`
}

func (*ReporterExecutionSummaryTimingInput) GetEndTime added in v3.8.0

GetEndTime returns ReporterExecutionSummaryTimingInput.EndTime, and is useful for accessing the field via an interface.

func (*ReporterExecutionSummaryTimingInput) GetStartTime added in v3.8.0

GetStartTime returns ReporterExecutionSummaryTimingInput.StartTime, and is useful for accessing the field via an interface.

type ReporterExtensionInput added in v3.8.0

type ReporterExtensionInput struct {
	AutoSave bool                 `json:"autoSave"`
	Git      ReporterGitInput     `json:"git"`
	File     ReporterFileInput    `json:"file"`
	Session  ReporterSessionInput `json:"session"`
	Device   ReporterDeviceInput  `json:"device"`
}

func (*ReporterExtensionInput) GetAutoSave added in v3.8.0

func (v *ReporterExtensionInput) GetAutoSave() bool

GetAutoSave returns ReporterExtensionInput.AutoSave, and is useful for accessing the field via an interface.

func (*ReporterExtensionInput) GetDevice added in v3.8.0

GetDevice returns ReporterExtensionInput.Device, and is useful for accessing the field via an interface.

func (*ReporterExtensionInput) GetFile added in v3.8.0

GetFile returns ReporterExtensionInput.File, and is useful for accessing the field via an interface.

func (*ReporterExtensionInput) GetGit added in v3.8.0

GetGit returns ReporterExtensionInput.Git, and is useful for accessing the field via an interface.

func (*ReporterExtensionInput) GetSession added in v3.8.0

GetSession returns ReporterExtensionInput.Session, and is useful for accessing the field via an interface.

type ReporterFileInput added in v3.8.0

type ReporterFileInput struct {
	Path    string `json:"path"`
	Content string `json:"content"`
}

func (*ReporterFileInput) GetContent added in v3.8.0

func (v *ReporterFileInput) GetContent() string

GetContent returns ReporterFileInput.Content, and is useful for accessing the field via an interface.

func (*ReporterFileInput) GetPath added in v3.8.0

func (v *ReporterFileInput) GetPath() string

GetPath returns ReporterFileInput.Path, and is useful for accessing the field via an interface.

type ReporterFrontmatterInput added in v3.8.0

type ReporterFrontmatterInput struct {
	Shell        string                        `json:"shell"`
	Cwd          string                        `json:"cwd"`
	SkipPrompts  bool                          `json:"skipPrompts"`
	Runme        ReporterFrontmatterRunmeInput `json:"runme"`
	Category     string                        `json:"category"`
	TerminalRows string                        `json:"terminalRows"`
}

func (*ReporterFrontmatterInput) GetCategory added in v3.8.0

func (v *ReporterFrontmatterInput) GetCategory() string

GetCategory returns ReporterFrontmatterInput.Category, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterInput) GetCwd added in v3.8.0

func (v *ReporterFrontmatterInput) GetCwd() string

GetCwd returns ReporterFrontmatterInput.Cwd, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterInput) GetRunme added in v3.8.0

GetRunme returns ReporterFrontmatterInput.Runme, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterInput) GetShell added in v3.8.0

func (v *ReporterFrontmatterInput) GetShell() string

GetShell returns ReporterFrontmatterInput.Shell, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterInput) GetSkipPrompts added in v3.8.0

func (v *ReporterFrontmatterInput) GetSkipPrompts() bool

GetSkipPrompts returns ReporterFrontmatterInput.SkipPrompts, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterInput) GetTerminalRows added in v3.8.0

func (v *ReporterFrontmatterInput) GetTerminalRows() string

GetTerminalRows returns ReporterFrontmatterInput.TerminalRows, and is useful for accessing the field via an interface.

type ReporterFrontmatterRunmeInput added in v3.8.0

type ReporterFrontmatterRunmeInput struct {
	Id      string                    `json:"id"`
	Version string                    `json:"version"`
	Session ReporterRunmeSessionInput `json:"session"`
}

func (*ReporterFrontmatterRunmeInput) GetId added in v3.8.0

GetId returns ReporterFrontmatterRunmeInput.Id, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterRunmeInput) GetSession added in v3.8.0

GetSession returns ReporterFrontmatterRunmeInput.Session, and is useful for accessing the field via an interface.

func (*ReporterFrontmatterRunmeInput) GetVersion added in v3.8.0

func (v *ReporterFrontmatterRunmeInput) GetVersion() string

GetVersion returns ReporterFrontmatterRunmeInput.Version, and is useful for accessing the field via an interface.

type ReporterGitInput added in v3.8.0

type ReporterGitInput struct {
	Repository string `json:"repository"`
	Branch     string `json:"branch"`
	Commit     string `json:"commit"`
}

func (*ReporterGitInput) GetBranch added in v3.8.0

func (v *ReporterGitInput) GetBranch() string

GetBranch returns ReporterGitInput.Branch, and is useful for accessing the field via an interface.

func (*ReporterGitInput) GetCommit added in v3.8.0

func (v *ReporterGitInput) GetCommit() string

GetCommit returns ReporterGitInput.Commit, and is useful for accessing the field via an interface.

func (*ReporterGitInput) GetRepository added in v3.8.0

func (v *ReporterGitInput) GetRepository() string

GetRepository returns ReporterGitInput.Repository, and is useful for accessing the field via an interface.

type ReporterInput added in v3.8.0

type ReporterInput struct {
	Notebook  ReporterNotebookInput  `json:"notebook"`
	Extension ReporterExtensionInput `json:"extension"`
}

func (*ReporterInput) GetExtension added in v3.8.0

func (v *ReporterInput) GetExtension() ReporterExtensionInput

GetExtension returns ReporterInput.Extension, and is useful for accessing the field via an interface.

func (*ReporterInput) GetNotebook added in v3.8.0

func (v *ReporterInput) GetNotebook() ReporterNotebookInput

GetNotebook returns ReporterInput.Notebook, and is useful for accessing the field via an interface.

type ReporterNotebookInput added in v3.8.0

type ReporterNotebookInput struct {
	Cells       []ReporterCellInput      `json:"cells"`
	Metadata    string                   `json:"metadata"`
	Frontmatter ReporterFrontmatterInput `json:"frontmatter"`
}

func (*ReporterNotebookInput) GetCells added in v3.8.0

func (v *ReporterNotebookInput) GetCells() []ReporterCellInput

GetCells returns ReporterNotebookInput.Cells, and is useful for accessing the field via an interface.

func (*ReporterNotebookInput) GetFrontmatter added in v3.8.0

func (v *ReporterNotebookInput) GetFrontmatter() ReporterFrontmatterInput

GetFrontmatter returns ReporterNotebookInput.Frontmatter, and is useful for accessing the field via an interface.

func (*ReporterNotebookInput) GetMetadata added in v3.8.0

func (v *ReporterNotebookInput) GetMetadata() string

GetMetadata returns ReporterNotebookInput.Metadata, and is useful for accessing the field via an interface.

type ReporterProcessInfoExitReasonInput added in v3.8.0

type ReporterProcessInfoExitReasonInput struct {
	Type string `json:"type"`
	Code UInt32 `json:"code"`
}

func (*ReporterProcessInfoExitReasonInput) GetCode added in v3.8.0

GetCode returns ReporterProcessInfoExitReasonInput.Code, and is useful for accessing the field via an interface.

func (*ReporterProcessInfoExitReasonInput) GetType added in v3.8.0

GetType returns ReporterProcessInfoExitReasonInput.Type, and is useful for accessing the field via an interface.

type ReporterRunmeSessionDocumentInput added in v3.8.0

type ReporterRunmeSessionDocumentInput struct {
	RelativePath string `json:"relativePath"`
}

func (*ReporterRunmeSessionDocumentInput) GetRelativePath added in v3.8.0

func (v *ReporterRunmeSessionDocumentInput) GetRelativePath() string

GetRelativePath returns ReporterRunmeSessionDocumentInput.RelativePath, and is useful for accessing the field via an interface.

type ReporterRunmeSessionInput added in v3.8.0

type ReporterRunmeSessionInput struct {
	Id       string                            `json:"id"`
	Document ReporterRunmeSessionDocumentInput `json:"document"`
}

func (*ReporterRunmeSessionInput) GetDocument added in v3.8.0

GetDocument returns ReporterRunmeSessionInput.Document, and is useful for accessing the field via an interface.

func (*ReporterRunmeSessionInput) GetId added in v3.8.0

func (v *ReporterRunmeSessionInput) GetId() string

GetId returns ReporterRunmeSessionInput.Id, and is useful for accessing the field via an interface.

type ReporterSessionInput added in v3.8.0

type ReporterSessionInput struct {
	PlainOutput  string `json:"plainOutput"`
	MaskedOutput string `json:"maskedOutput"`
}

func (*ReporterSessionInput) GetMaskedOutput added in v3.8.0

func (v *ReporterSessionInput) GetMaskedOutput() string

GetMaskedOutput returns ReporterSessionInput.MaskedOutput, and is useful for accessing the field via an interface.

func (*ReporterSessionInput) GetPlainOutput added in v3.8.0

func (v *ReporterSessionInput) GetPlainOutput() string

GetPlainOutput returns ReporterSessionInput.PlainOutput, and is useful for accessing the field via an interface.

type ReporterTextRangeInput added in v3.8.0

type ReporterTextRangeInput struct {
	Start int `json:"start"`
	End   int `json:"end"`
}

func (*ReporterTextRangeInput) GetEnd added in v3.8.0

func (v *ReporterTextRangeInput) GetEnd() int

GetEnd returns ReporterTextRangeInput.End, and is useful for accessing the field via an interface.

func (*ReporterTextRangeInput) GetStart added in v3.8.0

func (v *ReporterTextRangeInput) GetStart() int

GetStart returns ReporterTextRangeInput.Start, and is useful for accessing the field via an interface.

type UInt32 added in v3.8.0

type UInt32 struct {
	Value int `json:"value"`
}

func (*UInt32) GetValue added in v3.8.0

func (v *UInt32) GetValue() int

GetValue returns UInt32.Value, and is useful for accessing the field via an interface.

Jump to

Keyboard shortcuts

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