node

package
v2.12.0+incompatible Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2020 License: AGPL-3.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// RegisterNodeBodyNodeTypeNODETYPEINVALID captures enum value "NODE_TYPE_INVALID"
	RegisterNodeBodyNodeTypeNODETYPEINVALID string = "NODE_TYPE_INVALID"

	// RegisterNodeBodyNodeTypeGENERICNODE captures enum value "GENERIC_NODE"
	RegisterNodeBodyNodeTypeGENERICNODE string = "GENERIC_NODE"

	// RegisterNodeBodyNodeTypeCONTAINERNODE captures enum value "CONTAINER_NODE"
	RegisterNodeBodyNodeTypeCONTAINERNODE string = "CONTAINER_NODE"

	// RegisterNodeBodyNodeTypeREMOTENODE captures enum value "REMOTE_NODE"
	RegisterNodeBodyNodeTypeREMOTENODE string = "REMOTE_NODE"

	// RegisterNodeBodyNodeTypeREMOTERDSNODE captures enum value "REMOTE_RDS_NODE"
	RegisterNodeBodyNodeTypeREMOTERDSNODE string = "REMOTE_RDS_NODE"
)
View Source
const (

	// RegisterNodeBodyMetricsModeAUTO captures enum value "AUTO"
	RegisterNodeBodyMetricsModeAUTO string = "AUTO"

	// RegisterNodeBodyMetricsModePULL captures enum value "PULL"
	RegisterNodeBodyMetricsModePULL string = "PULL"

	// RegisterNodeBodyMetricsModePUSH captures enum value "PUSH"
	RegisterNodeBodyMetricsModePUSH string = "PUSH"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for node API

func (*Client) RegisterNode

func (a *Client) RegisterNode(params *RegisterNodeParams) (*RegisterNodeOK, error)

RegisterNode registers node registers a new node and pmm agent

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	RegisterNode(params *RegisterNodeParams) (*RegisterNodeOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new node API client.

type DetailsItems0

type DetailsItems0 struct {

	// type url
	TypeURL string `json:"type_url,omitempty"`

	// value
	// Format: byte
	Value strfmt.Base64 `json:"value,omitempty"`
}

DetailsItems0 details items0 swagger:model DetailsItems0

func (*DetailsItems0) MarshalBinary

func (o *DetailsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DetailsItems0) UnmarshalBinary

func (o *DetailsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DetailsItems0) Validate

func (o *DetailsItems0) Validate(formats strfmt.Registry) error

Validate validates this details items0

type RegisterNodeBody

type RegisterNodeBody struct {

	// NodeType describes supported Node types.
	// Enum: [NODE_TYPE_INVALID GENERIC_NODE CONTAINER_NODE REMOTE_NODE REMOTE_RDS_NODE]
	NodeType *string `json:"node_type,omitempty"`

	// Unique across all Nodes user-defined name.
	NodeName string `json:"node_name,omitempty"`

	// Node address (DNS name or IP).
	Address string `json:"address,omitempty"`

	// Linux machine-id.
	MachineID string `json:"machine_id,omitempty"`

	// Linux distribution name and version.
	Distro string `json:"distro,omitempty"`

	// Container identifier. If specified, must be a unique Docker container identifier.
	ContainerID string `json:"container_id,omitempty"`

	// Container name.
	ContainerName string `json:"container_name,omitempty"`

	// Node model.
	NodeModel string `json:"node_model,omitempty"`

	// Node region.
	Region string `json:"region,omitempty"`

	// Node availability zone.
	Az string `json:"az,omitempty"`

	// Custom user-assigned labels for Node.
	CustomLabels map[string]string `json:"custom_labels,omitempty"`

	// If true, and Node with that name already exist, it will be removed with all dependent Services and Agents.
	Reregister bool `json:"reregister,omitempty"`

	// MetricsMode defines desired metrics mode for agent,
	// it can be pull, push or auto mode chosen by server.
	// Enum: [AUTO PULL PUSH]
	MetricsMode *string `json:"metrics_mode,omitempty"`
}

RegisterNodeBody register node body swagger:model RegisterNodeBody

func (*RegisterNodeBody) MarshalBinary

func (o *RegisterNodeBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeBody) UnmarshalBinary

func (o *RegisterNodeBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeBody) Validate

func (o *RegisterNodeBody) Validate(formats strfmt.Registry) error

Validate validates this register node body

type RegisterNodeDefault

type RegisterNodeDefault struct {
	Payload *RegisterNodeDefaultBody
	// contains filtered or unexported fields
}

RegisterNodeDefault handles this case with default header values.

An unexpected error response.

func NewRegisterNodeDefault

func NewRegisterNodeDefault(code int) *RegisterNodeDefault

NewRegisterNodeDefault creates a RegisterNodeDefault with default headers values

func (*RegisterNodeDefault) Code

func (o *RegisterNodeDefault) Code() int

Code gets the status code for the register node default response

func (*RegisterNodeDefault) Error

func (o *RegisterNodeDefault) Error() string

func (*RegisterNodeDefault) GetPayload

type RegisterNodeDefaultBody

type RegisterNodeDefaultBody struct {

	// error
	Error string `json:"error,omitempty"`

	// code
	Code int32 `json:"code,omitempty"`

	// message
	Message string `json:"message,omitempty"`

	// details
	Details []*DetailsItems0 `json:"details"`
}

RegisterNodeDefaultBody register node default body swagger:model RegisterNodeDefaultBody

func (*RegisterNodeDefaultBody) MarshalBinary

func (o *RegisterNodeDefaultBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeDefaultBody) UnmarshalBinary

func (o *RegisterNodeDefaultBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeDefaultBody) Validate

func (o *RegisterNodeDefaultBody) Validate(formats strfmt.Registry) error

Validate validates this register node default body

type RegisterNodeOK

type RegisterNodeOK struct {
	Payload *RegisterNodeOKBody
}

RegisterNodeOK handles this case with default header values.

A successful response.

func NewRegisterNodeOK

func NewRegisterNodeOK() *RegisterNodeOK

NewRegisterNodeOK creates a RegisterNodeOK with default headers values

func (*RegisterNodeOK) Error

func (o *RegisterNodeOK) Error() string

func (*RegisterNodeOK) GetPayload

func (o *RegisterNodeOK) GetPayload() *RegisterNodeOKBody

type RegisterNodeOKBody

type RegisterNodeOKBody struct {

	// container node
	ContainerNode *RegisterNodeOKBodyContainerNode `json:"container_node,omitempty"`

	// generic node
	GenericNode *RegisterNodeOKBodyGenericNode `json:"generic_node,omitempty"`

	// pmm agent
	PMMAgent *RegisterNodeOKBodyPMMAgent `json:"pmm_agent,omitempty"`
}

RegisterNodeOKBody register node OK body swagger:model RegisterNodeOKBody

func (*RegisterNodeOKBody) MarshalBinary

func (o *RegisterNodeOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeOKBody) UnmarshalBinary

func (o *RegisterNodeOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeOKBody) Validate

func (o *RegisterNodeOKBody) Validate(formats strfmt.Registry) error

Validate validates this register node OK body

type RegisterNodeOKBodyContainerNode

type RegisterNodeOKBodyContainerNode struct {

	// Unique randomly generated instance identifier.
	NodeID string `json:"node_id,omitempty"`

	// Unique across all Nodes user-defined name.
	NodeName string `json:"node_name,omitempty"`

	// Node address (DNS name or IP).
	Address string `json:"address,omitempty"`

	// Linux machine-id of the Generic Node where this Container Node runs.
	MachineID string `json:"machine_id,omitempty"`

	// Container identifier. If specified, must be a unique Docker container identifier.
	ContainerID string `json:"container_id,omitempty"`

	// Container name.
	ContainerName string `json:"container_name,omitempty"`

	// Node model.
	NodeModel string `json:"node_model,omitempty"`

	// Node region.
	Region string `json:"region,omitempty"`

	// Node availability zone.
	Az string `json:"az,omitempty"`

	// Custom user-assigned labels.
	CustomLabels map[string]string `json:"custom_labels,omitempty"`
}

RegisterNodeOKBodyContainerNode ContainerNode represents a Docker container. swagger:model RegisterNodeOKBodyContainerNode

func (*RegisterNodeOKBodyContainerNode) MarshalBinary

func (o *RegisterNodeOKBodyContainerNode) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeOKBodyContainerNode) UnmarshalBinary

func (o *RegisterNodeOKBodyContainerNode) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeOKBodyContainerNode) Validate

Validate validates this register node OK body container node

type RegisterNodeOKBodyGenericNode

type RegisterNodeOKBodyGenericNode struct {

	// Unique randomly generated instance identifier.
	NodeID string `json:"node_id,omitempty"`

	// Unique across all Nodes user-defined name.
	NodeName string `json:"node_name,omitempty"`

	// Node address (DNS name or IP).
	Address string `json:"address,omitempty"`

	// Linux machine-id.
	MachineID string `json:"machine_id,omitempty"`

	// Linux distribution name and version.
	Distro string `json:"distro,omitempty"`

	// Node model.
	NodeModel string `json:"node_model,omitempty"`

	// Node region.
	Region string `json:"region,omitempty"`

	// Node availability zone.
	Az string `json:"az,omitempty"`

	// Custom user-assigned labels.
	CustomLabels map[string]string `json:"custom_labels,omitempty"`
}

RegisterNodeOKBodyGenericNode GenericNode represents a bare metal server or virtual machine. swagger:model RegisterNodeOKBodyGenericNode

func (*RegisterNodeOKBodyGenericNode) MarshalBinary

func (o *RegisterNodeOKBodyGenericNode) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeOKBodyGenericNode) UnmarshalBinary

func (o *RegisterNodeOKBodyGenericNode) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeOKBodyGenericNode) Validate

func (o *RegisterNodeOKBodyGenericNode) Validate(formats strfmt.Registry) error

Validate validates this register node OK body generic node

type RegisterNodeOKBodyPMMAgent

type RegisterNodeOKBodyPMMAgent struct {

	// Unique randomly generated instance identifier.
	AgentID string `json:"agent_id,omitempty"`

	// Node identifier where this instance runs.
	RunsOnNodeID string `json:"runs_on_node_id,omitempty"`

	// Custom user-assigned labels.
	CustomLabels map[string]string `json:"custom_labels,omitempty"`

	// True if Agent is running and connected to pmm-managed.
	Connected bool `json:"connected,omitempty"`
}

RegisterNodeOKBodyPMMAgent PMMAgent runs on Generic or Container Node. swagger:model RegisterNodeOKBodyPMMAgent

func (*RegisterNodeOKBodyPMMAgent) MarshalBinary

func (o *RegisterNodeOKBodyPMMAgent) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RegisterNodeOKBodyPMMAgent) UnmarshalBinary

func (o *RegisterNodeOKBodyPMMAgent) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RegisterNodeOKBodyPMMAgent) Validate

func (o *RegisterNodeOKBodyPMMAgent) Validate(formats strfmt.Registry) error

Validate validates this register node OK body PMM agent

type RegisterNodeParams

type RegisterNodeParams struct {

	/*Body*/
	Body RegisterNodeBody

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

RegisterNodeParams contains all the parameters to send to the API endpoint for the register node operation typically these are written to a http.Request

func NewRegisterNodeParams

func NewRegisterNodeParams() *RegisterNodeParams

NewRegisterNodeParams creates a new RegisterNodeParams object with the default values initialized.

func NewRegisterNodeParamsWithContext

func NewRegisterNodeParamsWithContext(ctx context.Context) *RegisterNodeParams

NewRegisterNodeParamsWithContext creates a new RegisterNodeParams object with the default values initialized, and the ability to set a context for a request

func NewRegisterNodeParamsWithHTTPClient

func NewRegisterNodeParamsWithHTTPClient(client *http.Client) *RegisterNodeParams

NewRegisterNodeParamsWithHTTPClient creates a new RegisterNodeParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewRegisterNodeParamsWithTimeout

func NewRegisterNodeParamsWithTimeout(timeout time.Duration) *RegisterNodeParams

NewRegisterNodeParamsWithTimeout creates a new RegisterNodeParams object with the default values initialized, and the ability to set a timeout on a request

func (*RegisterNodeParams) SetBody

func (o *RegisterNodeParams) SetBody(body RegisterNodeBody)

SetBody adds the body to the register node params

func (*RegisterNodeParams) SetContext

func (o *RegisterNodeParams) SetContext(ctx context.Context)

SetContext adds the context to the register node params

func (*RegisterNodeParams) SetHTTPClient

func (o *RegisterNodeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the register node params

func (*RegisterNodeParams) SetTimeout

func (o *RegisterNodeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the register node params

func (*RegisterNodeParams) WithBody

WithBody adds the body to the register node params

func (*RegisterNodeParams) WithContext

WithContext adds the context to the register node params

func (*RegisterNodeParams) WithHTTPClient

func (o *RegisterNodeParams) WithHTTPClient(client *http.Client) *RegisterNodeParams

WithHTTPClient adds the HTTPClient to the register node params

func (*RegisterNodeParams) WithTimeout

func (o *RegisterNodeParams) WithTimeout(timeout time.Duration) *RegisterNodeParams

WithTimeout adds the timeout to the register node params

func (*RegisterNodeParams) WriteToRequest

func (o *RegisterNodeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type RegisterNodeReader

type RegisterNodeReader struct {
	// contains filtered or unexported fields
}

RegisterNodeReader is a Reader for the RegisterNode structure.

func (*RegisterNodeReader) ReadResponse

func (o *RegisterNodeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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