humiographql

package
v0.33.0 Latest Latest
Warning

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

Go to latest
Published: Mar 1, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Alert

type Alert struct {
	ID                 graphql.String   `graphql:"id"`
	Name               graphql.String   `graphql:"name"`
	QueryString        graphql.String   `graphql:"queryString"`
	QueryStart         graphql.String   `graphql:"queryStart"`
	ThrottleField      graphql.String   `graphql:"throttleField"`
	TimeOfLastTrigger  Long             `graphql:"timeOfLastTrigger"`
	IsStarred          graphql.Boolean  `graphql:"isStarred"`
	Description        graphql.String   `graphql:"description"`
	ThrottleTimeMillis Long             `graphql:"throttleTimeMillis"`
	Enabled            graphql.Boolean  `graphql:"enabled"`
	Actions            []graphql.String `graphql:"actions"`
	Labels             []graphql.String `graphql:"labels"`
	LastError          graphql.String   `graphql:"lastError"`
	QueryOwnership     struct {
		ID                     graphql.String         `graphql:"id"`
		QueryOwnershipTypeName QueryOwnershipTypeName `graphql:"__typename"`
	} `graphql:"queryOwnership"`
	RunAsUser struct {
		ID graphql.String `graphql:"id"`
	} `graphql:"runAsUser"`
}

type CreateAlert

type CreateAlert struct {
	ViewName           graphql.String     `json:"viewName"`
	Name               graphql.String     `json:"name"`
	Description        graphql.String     `json:"description,omitempty"`
	QueryString        graphql.String     `json:"queryString"`
	QueryStart         graphql.String     `json:"queryStart"`
	ThrottleTimeMillis Long               `json:"throttleTimeMillis"`
	ThrottleField      graphql.String     `json:"throttleField,omitempty"`
	RunAsUserID        graphql.String     `json:"runAsUserId,omitempty"`
	Enabled            graphql.Boolean    `json:"enabled"`
	Actions            []graphql.String   `json:"actions"`
	Labels             []graphql.String   `json:"labels"`
	QueryOwnershipType QueryOwnershipType `json:"queryOwnershipType,omitempty"`
}

type Long

type Long int64

type QueryOwnership

type QueryOwnership struct {
}

type QueryOwnershipType

type QueryOwnershipType string
const (
	QueryOwnershipTypeUser         QueryOwnershipType = "User"
	QueryOwnershipTypeOrganization QueryOwnershipType = "Organization"
)

type QueryOwnershipTypeName

type QueryOwnershipTypeName string
const (
	QueryOwnershipTypeNameOrganization QueryOwnershipTypeName = "OrganizationOwnership"
	QueryOwnershipTypeNameUser         QueryOwnershipTypeName = "UserOwnership"
)

type UpdateAlert

type UpdateAlert struct {
	ViewName           graphql.String     `json:"viewName"`
	ID                 graphql.String     `json:"id"`
	Name               graphql.String     `json:"name"`
	Description        graphql.String     `json:"description,omitempty"`
	QueryString        graphql.String     `json:"queryString"`
	QueryStart         graphql.String     `json:"queryStart"`
	ThrottleTimeMillis Long               `json:"throttleTimeMillis"`
	ThrottleField      graphql.String     `json:"throttleField,omitempty"`
	RunAsUserID        graphql.String     `json:"runAsUserId,omitempty"`
	Enabled            graphql.Boolean    `json:"enabled"`
	Actions            []graphql.String   `json:"actions"`
	Labels             []graphql.String   `json:"labels"`
	QueryOwnershipType QueryOwnershipType `json:"queryOwnershipType,omitempty"`
}

Jump to

Keyboard shortcuts

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