dashboard

package
v0.0.0-...-09f9b81 Latest Latest
Warning

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

Go to latest
Published: Mar 23, 2021 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AllDashboardsBadRequest

type AllDashboardsBadRequest struct {
	Payload *models.Error
}
AllDashboardsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewAllDashboardsBadRequest

func NewAllDashboardsBadRequest() *AllDashboardsBadRequest

NewAllDashboardsBadRequest creates a AllDashboardsBadRequest with default headers values

func (*AllDashboardsBadRequest) Error

func (o *AllDashboardsBadRequest) Error() string

func (*AllDashboardsBadRequest) GetPayload

func (o *AllDashboardsBadRequest) GetPayload() *models.Error

type AllDashboardsNotFound

type AllDashboardsNotFound struct {
	Payload *models.Error
}
AllDashboardsNotFound describes a response with status code 404, with default header values.

Not Found

func NewAllDashboardsNotFound

func NewAllDashboardsNotFound() *AllDashboardsNotFound

NewAllDashboardsNotFound creates a AllDashboardsNotFound with default headers values

func (*AllDashboardsNotFound) Error

func (o *AllDashboardsNotFound) Error() string

func (*AllDashboardsNotFound) GetPayload

func (o *AllDashboardsNotFound) GetPayload() *models.Error

type AllDashboardsOK

type AllDashboardsOK struct {
	Payload []*models.DashboardBase
}
AllDashboardsOK describes a response with status code 200, with default header values.

dashboards

func NewAllDashboardsOK

func NewAllDashboardsOK() *AllDashboardsOK

NewAllDashboardsOK creates a AllDashboardsOK with default headers values

func (*AllDashboardsOK) Error

func (o *AllDashboardsOK) Error() string

func (*AllDashboardsOK) GetPayload

func (o *AllDashboardsOK) GetPayload() []*models.DashboardBase

type AllDashboardsParams

type AllDashboardsParams struct {

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

AllDashboardsParams contains all the parameters to send to the API endpoint

for the all dashboards operation.

Typically these are written to a http.Request.

func NewAllDashboardsParams

func NewAllDashboardsParams() *AllDashboardsParams

NewAllDashboardsParams creates a new AllDashboardsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewAllDashboardsParamsWithContext

func NewAllDashboardsParamsWithContext(ctx context.Context) *AllDashboardsParams

NewAllDashboardsParamsWithContext creates a new AllDashboardsParams object with the ability to set a context for a request.

func NewAllDashboardsParamsWithHTTPClient

func NewAllDashboardsParamsWithHTTPClient(client *http.Client) *AllDashboardsParams

NewAllDashboardsParamsWithHTTPClient creates a new AllDashboardsParams object with the ability to set a custom HTTPClient for a request.

func NewAllDashboardsParamsWithTimeout

func NewAllDashboardsParamsWithTimeout(timeout time.Duration) *AllDashboardsParams

NewAllDashboardsParamsWithTimeout creates a new AllDashboardsParams object with the ability to set a timeout on a request.

func (*AllDashboardsParams) SetContext

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

SetContext adds the context to the all dashboards params

func (*AllDashboardsParams) SetDefaults

func (o *AllDashboardsParams) SetDefaults()

SetDefaults hydrates default values in the all dashboards params (not the query body).

All values with no default are reset to their zero value.

func (*AllDashboardsParams) SetFields

func (o *AllDashboardsParams) SetFields(fields *string)

SetFields adds the fields to the all dashboards params

func (*AllDashboardsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the all dashboards params

func (*AllDashboardsParams) SetTimeout

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

SetTimeout adds the timeout to the all dashboards params

func (*AllDashboardsParams) WithContext

WithContext adds the context to the all dashboards params

func (*AllDashboardsParams) WithDefaults

func (o *AllDashboardsParams) WithDefaults() *AllDashboardsParams

WithDefaults hydrates default values in the all dashboards params (not the query body).

All values with no default are reset to their zero value.

func (*AllDashboardsParams) WithFields

func (o *AllDashboardsParams) WithFields(fields *string) *AllDashboardsParams

WithFields adds the fields to the all dashboards params

func (*AllDashboardsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the all dashboards params

func (*AllDashboardsParams) WithTimeout

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

WithTimeout adds the timeout to the all dashboards params

func (*AllDashboardsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type AllDashboardsReader

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

AllDashboardsReader is a Reader for the AllDashboards structure.

func (*AllDashboardsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type Client

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

Client for dashboard API

func (*Client) AllDashboards

func (a *Client) AllDashboards(params *AllDashboardsParams, opts ...ClientOption) (*AllDashboardsOK, error)
AllDashboards gets all dashboards

### Get information about all active dashboards.

Returns an array of **abbreviated dashboard objects**. Dashboards marked as deleted are excluded from this list.

Get the **full details** of a specific dashboard by id with [dashboard()](#!/Dashboard/dashboard)

Find **deleted dashboards** with [search_dashboards()](#!/Dashboard/search_dashboards)

func (*Client) CreateDashboard

func (a *Client) CreateDashboard(params *CreateDashboardParams, opts ...ClientOption) (*CreateDashboardOK, error)
CreateDashboard creates dashboard

### Create a new dashboard

Creates a new dashboard object and returns the details of the newly created dashboard.

`Title`, `user_id`, and `space_id` are all required fields. `Space_id` and `user_id` must contain the id of an existing space or user, respectively. A dashboard's `title` must be unique within the space in which it resides.

If you receive a 422 error response when creating a dashboard, be sure to look at the response body for information about exactly which fields are missing or contain invalid data.

You can **update** an existing dashboard with [update_dashboard()](#!/Dashboard/update_dashboard)

You can **permanently delete** an existing dashboard with [delete_dashboard()](#!/Dashboard/delete_dashboard)

func (*Client) CreateDashboardElement

func (a *Client) CreateDashboardElement(params *CreateDashboardElementParams, opts ...ClientOption) (*CreateDashboardElementOK, error)

CreateDashboardElement creates dashboard element

### Create a dashboard element on the dashboard with a specific id.

func (*Client) CreateDashboardFilter

func (a *Client) CreateDashboardFilter(params *CreateDashboardFilterParams, opts ...ClientOption) (*CreateDashboardFilterOK, error)

CreateDashboardFilter creates dashboard filter

### Create a dashboard filter on the dashboard with a specific id.

func (*Client) CreateDashboardLayout

func (a *Client) CreateDashboardLayout(params *CreateDashboardLayoutParams, opts ...ClientOption) (*CreateDashboardLayoutOK, error)

CreateDashboardLayout creates dashboard layout

### Create a dashboard layout on the dashboard with a specific id.

func (*Client) Dashboard

func (a *Client) Dashboard(params *DashboardParams, opts ...ClientOption) (*DashboardOK, error)
Dashboard gets dashboard

### Get information about a dashboard

Returns the full details of the identified dashboard object

Get a **summary list** of all active dashboards with [all_dashboards()](#!/Dashboard/all_dashboards)

You can **Search** for dashboards with [search_dashboards()](#!/Dashboard/search_dashboards)

func (*Client) DashboardAggregateTableLookml

func (a *Client) DashboardAggregateTableLookml(params *DashboardAggregateTableLookmlParams, opts ...ClientOption) (*DashboardAggregateTableLookmlOK, error)
DashboardAggregateTableLookml gets aggregate table look m l for a dashboard

### Get Aggregate Table LookML for Each Query on a Dahboard

Returns a JSON object that contains the dashboard id and Aggregate Table lookml

func (*Client) DashboardDashboardElements

func (a *Client) DashboardDashboardElements(params *DashboardDashboardElementsParams, opts ...ClientOption) (*DashboardDashboardElementsOK, error)

DashboardDashboardElements gets all dashboard elements

### Get information about all the dashboard elements on a dashboard with a specific id.

func (*Client) DashboardDashboardFilters

func (a *Client) DashboardDashboardFilters(params *DashboardDashboardFiltersParams, opts ...ClientOption) (*DashboardDashboardFiltersOK, error)

DashboardDashboardFilters gets all dashboard filters

### Get information about all the dashboard filters on a dashboard with a specific id.

func (*Client) DashboardDashboardLayouts

func (a *Client) DashboardDashboardLayouts(params *DashboardDashboardLayoutsParams, opts ...ClientOption) (*DashboardDashboardLayoutsOK, error)

DashboardDashboardLayouts gets all dashboard layouts

### Get information about all the dashboard elements on a dashboard with a specific id.

func (*Client) DashboardElement

func (a *Client) DashboardElement(params *DashboardElementParams, opts ...ClientOption) (*DashboardElementOK, error)

DashboardElement gets dashboard element

### Get information about the dashboard element with a specific id.

func (*Client) DashboardFilter

func (a *Client) DashboardFilter(params *DashboardFilterParams, opts ...ClientOption) (*DashboardFilterOK, error)

DashboardFilter gets dashboard filter

### Get information about the dashboard filters with a specific id.

func (*Client) DashboardLayout

func (a *Client) DashboardLayout(params *DashboardLayoutParams, opts ...ClientOption) (*DashboardLayoutOK, error)

DashboardLayout gets dashboard layout

### Get information about the dashboard layouts with a specific id.

func (*Client) DashboardLayoutComponent

func (a *Client) DashboardLayoutComponent(params *DashboardLayoutComponentParams, opts ...ClientOption) (*DashboardLayoutComponentOK, error)

DashboardLayoutComponent gets dashboard layout component

### Get information about the dashboard elements with a specific id.

func (*Client) DashboardLayoutDashboardLayoutComponents

func (a *Client) DashboardLayoutDashboardLayoutComponents(params *DashboardLayoutDashboardLayoutComponentsParams, opts ...ClientOption) (*DashboardLayoutDashboardLayoutComponentsOK, error)

DashboardLayoutDashboardLayoutComponents gets all dashboard layout components

### Get information about all the dashboard layout components for a dashboard layout with a specific id.

func (*Client) DashboardLookml

func (a *Client) DashboardLookml(params *DashboardLookmlParams, opts ...ClientOption) (*DashboardLookmlOK, error)
DashboardLookml gets lookml of a u d d

### Get lookml of a UDD

Returns a JSON object that contains the dashboard id and the full lookml

func (*Client) DeleteDashboard

func (a *Client) DeleteDashboard(params *DeleteDashboardParams, opts ...ClientOption) (*DeleteDashboardNoContent, error)
DeleteDashboard deletes dashboard

### Delete the dashboard with the specified id

Permanently **deletes** a dashboard. (The dashboard cannot be recovered after this operation.)

"Soft" delete or hide a dashboard by setting its `deleted` status to `True` with [update_dashboard()](#!/Dashboard/update_dashboard).

Note: When a dashboard is deleted in the UI, it is soft deleted. Use this API call to permanently remove it, if desired.

func (*Client) DeleteDashboardElement

func (a *Client) DeleteDashboardElement(params *DeleteDashboardElementParams, opts ...ClientOption) (*DeleteDashboardElementNoContent, error)

DeleteDashboardElement deletes dashboard element

### Delete a dashboard element with a specific id.

func (*Client) DeleteDashboardFilter

func (a *Client) DeleteDashboardFilter(params *DeleteDashboardFilterParams, opts ...ClientOption) (*DeleteDashboardFilterNoContent, error)

DeleteDashboardFilter deletes dashboard filter

### Delete a dashboard filter with a specific id.

func (*Client) DeleteDashboardLayout

func (a *Client) DeleteDashboardLayout(params *DeleteDashboardLayoutParams, opts ...ClientOption) (*DeleteDashboardLayoutNoContent, error)

DeleteDashboardLayout deletes dashboard layout

### Delete a dashboard layout with a specific id.

func (*Client) ImportLookmlDashboard

ImportLookmlDashboard imports look m l dashboard

### Import a LookML dashboard to a space as a UDD

Creates a UDD (a dashboard which exists in the Looker database rather than as a LookML file) from the LookML dashboard and places it in the space specified. The created UDD will have a lookml_link_id which links to the original LookML dashboard.

To give the imported dashboard specify a (e.g. title: "my title") in the body of your request, otherwise the imported dashboard will have the same title as the original LookML dashboard.

For this operation to succeed the user must have permission to see the LookML dashboard in question, and have permission to create content in the space the dashboard is being imported to.

**Sync** a linked UDD with [sync_lookml_dashboard()](#!/Dashboard/sync_lookml_dashboard) **Unlink** a linked UDD by setting lookml_link_id to null with [update_dashboard()](#!/Dashboard/update_dashboard)

func (*Client) SearchDashboardElements

func (a *Client) SearchDashboardElements(params *SearchDashboardElementsParams, opts ...ClientOption) (*SearchDashboardElementsOK, error)
SearchDashboardElements searches dashboard elements

### Search Dashboard Elements

Returns an **array of DashboardElement objects** that match the specified search criteria.

If multiple search params are given and `filter_or` is FALSE or not specified, search params are combined in a logical AND operation. Only rows that match *all* search param criteria will be returned.

If `filter_or` is TRUE, multiple search params are combined in a logical OR operation. Results will include rows that match **any** of the search criteria.

String search params use case-insensitive matching. String search params can contain `%` and '_' as SQL LIKE pattern match wildcard expressions. example="dan%" will match "danger" and "Danzig" but not "David" example="D_m%" will match "Damage" and "dump"

Integer search params can accept a single value or a comma separated list of values. The multiple values will be combined under a logical OR operation - results will match at least one of the given values.

Most search params can accept "IS NULL" and "NOT NULL" as special expressions to match or exclude (respectively) rows where the column is null.

Boolean search params accept only "true" and "false" as values.

func (*Client) SearchDashboards

func (a *Client) SearchDashboards(params *SearchDashboardsParams, opts ...ClientOption) (*SearchDashboardsOK, error)
SearchDashboards searches dashboards

### Search Dashboards

Returns an **array of dashboard objects** that match the specified search criteria.

If multiple search params are given and `filter_or` is FALSE or not specified, search params are combined in a logical AND operation. Only rows that match *all* search param criteria will be returned.

If `filter_or` is TRUE, multiple search params are combined in a logical OR operation. Results will include rows that match **any** of the search criteria.

String search params use case-insensitive matching. String search params can contain `%` and '_' as SQL LIKE pattern match wildcard expressions. example="dan%" will match "danger" and "Danzig" but not "David" example="D_m%" will match "Damage" and "dump"

Integer search params can accept a single value or a comma separated list of values. The multiple values will be combined under a logical OR operation - results will match at least one of the given values.

Most search params can accept "IS NULL" and "NOT NULL" as special expressions to match or exclude (respectively) rows where the column is null.

Boolean search params accept only "true" and "false" as values.

The parameters `limit`, and `offset` are recommended for fetching results in page-size chunks.

Get a **single dashboard** by id with [dashboard()](#!/Dashboard/dashboard)

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) SyncLookmlDashboard

func (a *Client) SyncLookmlDashboard(params *SyncLookmlDashboardParams, opts ...ClientOption) (*SyncLookmlDashboardOK, error)
SyncLookmlDashboard syncs look m l dashboard

### Update all linked dashboards to match the specified LookML dashboard.

Any UDD (a dashboard which exists in the Looker database rather than as a LookML file) which has a `lookml_link_id` property value referring to a LookML dashboard's id (model::dashboardname) will be updated so that it matches the current state of the LookML dashboard.

For this operation to succeed the user must have permission to view the LookML dashboard, and only linked dashboards that the user has permission to update will be synced.

To **link** or **unlink** a UDD set the `lookml_link_id` property with [update_dashboard()](#!/Dashboard/update_dashboard)

func (*Client) UpdateDashboard

func (a *Client) UpdateDashboard(params *UpdateDashboardParams, opts ...ClientOption) (*UpdateDashboardOK, error)
UpdateDashboard updates dashboard

### Update a dashboard

You can use this function to change the string and integer properties of a dashboard. Nested objects such as filters, dashboard elements, or dashboard layout components cannot be modified by this function - use the update functions for the respective nested object types (like [update_dashboard_filter()](#!/3.1/Dashboard/update_dashboard_filter) to change a filter) to modify nested objects referenced by a dashboard.

If you receive a 422 error response when updating a dashboard, be sure to look at the response body for information about exactly which fields are missing or contain invalid data.

func (*Client) UpdateDashboardElement

func (a *Client) UpdateDashboardElement(params *UpdateDashboardElementParams, opts ...ClientOption) (*UpdateDashboardElementOK, error)

UpdateDashboardElement updates dashboard element

### Update the dashboard element with a specific id.

func (*Client) UpdateDashboardFilter

func (a *Client) UpdateDashboardFilter(params *UpdateDashboardFilterParams, opts ...ClientOption) (*UpdateDashboardFilterOK, error)

UpdateDashboardFilter updates dashboard filter

### Update the dashboard filter with a specific id.

func (*Client) UpdateDashboardLayout

func (a *Client) UpdateDashboardLayout(params *UpdateDashboardLayoutParams, opts ...ClientOption) (*UpdateDashboardLayoutOK, error)

UpdateDashboardLayout updates dashboard layout

### Update the dashboard layout with a specific id.

func (*Client) UpdateDashboardLayoutComponent

func (a *Client) UpdateDashboardLayoutComponent(params *UpdateDashboardLayoutComponentParams, opts ...ClientOption) (*UpdateDashboardLayoutComponentOK, error)

UpdateDashboardLayoutComponent updates dashboard layout component

### Update the dashboard element with a specific id.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	AllDashboards(params *AllDashboardsParams, opts ...ClientOption) (*AllDashboardsOK, error)

	CreateDashboard(params *CreateDashboardParams, opts ...ClientOption) (*CreateDashboardOK, error)

	CreateDashboardElement(params *CreateDashboardElementParams, opts ...ClientOption) (*CreateDashboardElementOK, error)

	CreateDashboardFilter(params *CreateDashboardFilterParams, opts ...ClientOption) (*CreateDashboardFilterOK, error)

	CreateDashboardLayout(params *CreateDashboardLayoutParams, opts ...ClientOption) (*CreateDashboardLayoutOK, error)

	Dashboard(params *DashboardParams, opts ...ClientOption) (*DashboardOK, error)

	DashboardAggregateTableLookml(params *DashboardAggregateTableLookmlParams, opts ...ClientOption) (*DashboardAggregateTableLookmlOK, error)

	DashboardDashboardElements(params *DashboardDashboardElementsParams, opts ...ClientOption) (*DashboardDashboardElementsOK, error)

	DashboardDashboardFilters(params *DashboardDashboardFiltersParams, opts ...ClientOption) (*DashboardDashboardFiltersOK, error)

	DashboardDashboardLayouts(params *DashboardDashboardLayoutsParams, opts ...ClientOption) (*DashboardDashboardLayoutsOK, error)

	DashboardElement(params *DashboardElementParams, opts ...ClientOption) (*DashboardElementOK, error)

	DashboardFilter(params *DashboardFilterParams, opts ...ClientOption) (*DashboardFilterOK, error)

	DashboardLayout(params *DashboardLayoutParams, opts ...ClientOption) (*DashboardLayoutOK, error)

	DashboardLayoutComponent(params *DashboardLayoutComponentParams, opts ...ClientOption) (*DashboardLayoutComponentOK, error)

	DashboardLayoutDashboardLayoutComponents(params *DashboardLayoutDashboardLayoutComponentsParams, opts ...ClientOption) (*DashboardLayoutDashboardLayoutComponentsOK, error)

	DashboardLookml(params *DashboardLookmlParams, opts ...ClientOption) (*DashboardLookmlOK, error)

	DeleteDashboard(params *DeleteDashboardParams, opts ...ClientOption) (*DeleteDashboardNoContent, error)

	DeleteDashboardElement(params *DeleteDashboardElementParams, opts ...ClientOption) (*DeleteDashboardElementNoContent, error)

	DeleteDashboardFilter(params *DeleteDashboardFilterParams, opts ...ClientOption) (*DeleteDashboardFilterNoContent, error)

	DeleteDashboardLayout(params *DeleteDashboardLayoutParams, opts ...ClientOption) (*DeleteDashboardLayoutNoContent, error)

	ImportLookmlDashboard(params *ImportLookmlDashboardParams, opts ...ClientOption) (*ImportLookmlDashboardOK, *ImportLookmlDashboardCreated, error)

	SearchDashboardElements(params *SearchDashboardElementsParams, opts ...ClientOption) (*SearchDashboardElementsOK, error)

	SearchDashboards(params *SearchDashboardsParams, opts ...ClientOption) (*SearchDashboardsOK, error)

	SyncLookmlDashboard(params *SyncLookmlDashboardParams, opts ...ClientOption) (*SyncLookmlDashboardOK, error)

	UpdateDashboard(params *UpdateDashboardParams, opts ...ClientOption) (*UpdateDashboardOK, error)

	UpdateDashboardElement(params *UpdateDashboardElementParams, opts ...ClientOption) (*UpdateDashboardElementOK, error)

	UpdateDashboardFilter(params *UpdateDashboardFilterParams, opts ...ClientOption) (*UpdateDashboardFilterOK, error)

	UpdateDashboardLayout(params *UpdateDashboardLayoutParams, opts ...ClientOption) (*UpdateDashboardLayoutOK, error)

	UpdateDashboardLayoutComponent(params *UpdateDashboardLayoutComponentParams, opts ...ClientOption) (*UpdateDashboardLayoutComponentOK, 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 dashboard API client.

type CreateDashboardBadRequest

type CreateDashboardBadRequest struct {
	Payload *models.Error
}
CreateDashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewCreateDashboardBadRequest

func NewCreateDashboardBadRequest() *CreateDashboardBadRequest

NewCreateDashboardBadRequest creates a CreateDashboardBadRequest with default headers values

func (*CreateDashboardBadRequest) Error

func (o *CreateDashboardBadRequest) Error() string

func (*CreateDashboardBadRequest) GetPayload

func (o *CreateDashboardBadRequest) GetPayload() *models.Error

type CreateDashboardConflict

type CreateDashboardConflict struct {
	Payload *models.Error
}
CreateDashboardConflict describes a response with status code 409, with default header values.

Resource Already Exists

func NewCreateDashboardConflict

func NewCreateDashboardConflict() *CreateDashboardConflict

NewCreateDashboardConflict creates a CreateDashboardConflict with default headers values

func (*CreateDashboardConflict) Error

func (o *CreateDashboardConflict) Error() string

func (*CreateDashboardConflict) GetPayload

func (o *CreateDashboardConflict) GetPayload() *models.Error

type CreateDashboardElementBadRequest

type CreateDashboardElementBadRequest struct {
	Payload *models.Error
}
CreateDashboardElementBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewCreateDashboardElementBadRequest

func NewCreateDashboardElementBadRequest() *CreateDashboardElementBadRequest

NewCreateDashboardElementBadRequest creates a CreateDashboardElementBadRequest with default headers values

func (*CreateDashboardElementBadRequest) Error

func (*CreateDashboardElementBadRequest) GetPayload

type CreateDashboardElementConflict

type CreateDashboardElementConflict struct {
	Payload *models.Error
}
CreateDashboardElementConflict describes a response with status code 409, with default header values.

Resource Already Exists

func NewCreateDashboardElementConflict

func NewCreateDashboardElementConflict() *CreateDashboardElementConflict

NewCreateDashboardElementConflict creates a CreateDashboardElementConflict with default headers values

func (*CreateDashboardElementConflict) Error

func (*CreateDashboardElementConflict) GetPayload

func (o *CreateDashboardElementConflict) GetPayload() *models.Error

type CreateDashboardElementNotFound

type CreateDashboardElementNotFound struct {
	Payload *models.Error
}
CreateDashboardElementNotFound describes a response with status code 404, with default header values.

Not Found

func NewCreateDashboardElementNotFound

func NewCreateDashboardElementNotFound() *CreateDashboardElementNotFound

NewCreateDashboardElementNotFound creates a CreateDashboardElementNotFound with default headers values

func (*CreateDashboardElementNotFound) Error

func (*CreateDashboardElementNotFound) GetPayload

func (o *CreateDashboardElementNotFound) GetPayload() *models.Error

type CreateDashboardElementOK

type CreateDashboardElementOK struct {
	Payload *models.DashboardElement
}
CreateDashboardElementOK describes a response with status code 200, with default header values.

DashboardElement

func NewCreateDashboardElementOK

func NewCreateDashboardElementOK() *CreateDashboardElementOK

NewCreateDashboardElementOK creates a CreateDashboardElementOK with default headers values

func (*CreateDashboardElementOK) Error

func (o *CreateDashboardElementOK) Error() string

func (*CreateDashboardElementOK) GetPayload

type CreateDashboardElementParams

type CreateDashboardElementParams struct {

	/* Body.

	   DashboardElement
	*/
	Body *models.DashboardElement

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

CreateDashboardElementParams contains all the parameters to send to the API endpoint

for the create dashboard element operation.

Typically these are written to a http.Request.

func NewCreateDashboardElementParams

func NewCreateDashboardElementParams() *CreateDashboardElementParams

NewCreateDashboardElementParams creates a new CreateDashboardElementParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateDashboardElementParamsWithContext

func NewCreateDashboardElementParamsWithContext(ctx context.Context) *CreateDashboardElementParams

NewCreateDashboardElementParamsWithContext creates a new CreateDashboardElementParams object with the ability to set a context for a request.

func NewCreateDashboardElementParamsWithHTTPClient

func NewCreateDashboardElementParamsWithHTTPClient(client *http.Client) *CreateDashboardElementParams

NewCreateDashboardElementParamsWithHTTPClient creates a new CreateDashboardElementParams object with the ability to set a custom HTTPClient for a request.

func NewCreateDashboardElementParamsWithTimeout

func NewCreateDashboardElementParamsWithTimeout(timeout time.Duration) *CreateDashboardElementParams

NewCreateDashboardElementParamsWithTimeout creates a new CreateDashboardElementParams object with the ability to set a timeout on a request.

func (*CreateDashboardElementParams) SetBody

SetBody adds the body to the create dashboard element params

func (*CreateDashboardElementParams) SetContext

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

SetContext adds the context to the create dashboard element params

func (*CreateDashboardElementParams) SetDefaults

func (o *CreateDashboardElementParams) SetDefaults()

SetDefaults hydrates default values in the create dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardElementParams) SetFields

func (o *CreateDashboardElementParams) SetFields(fields *string)

SetFields adds the fields to the create dashboard element params

func (*CreateDashboardElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create dashboard element params

func (*CreateDashboardElementParams) SetTimeout

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

SetTimeout adds the timeout to the create dashboard element params

func (*CreateDashboardElementParams) WithBody

WithBody adds the body to the create dashboard element params

func (*CreateDashboardElementParams) WithContext

WithContext adds the context to the create dashboard element params

func (*CreateDashboardElementParams) WithDefaults

WithDefaults hydrates default values in the create dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardElementParams) WithFields

WithFields adds the fields to the create dashboard element params

func (*CreateDashboardElementParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create dashboard element params

func (*CreateDashboardElementParams) WithTimeout

WithTimeout adds the timeout to the create dashboard element params

func (*CreateDashboardElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateDashboardElementReader

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

CreateDashboardElementReader is a Reader for the CreateDashboardElement structure.

func (*CreateDashboardElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateDashboardElementTooManyRequests

type CreateDashboardElementTooManyRequests struct {
	Payload *models.Error
}
CreateDashboardElementTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewCreateDashboardElementTooManyRequests

func NewCreateDashboardElementTooManyRequests() *CreateDashboardElementTooManyRequests

NewCreateDashboardElementTooManyRequests creates a CreateDashboardElementTooManyRequests with default headers values

func (*CreateDashboardElementTooManyRequests) Error

func (*CreateDashboardElementTooManyRequests) GetPayload

type CreateDashboardElementUnprocessableEntity

type CreateDashboardElementUnprocessableEntity struct {
	Payload *models.ValidationError
}
CreateDashboardElementUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewCreateDashboardElementUnprocessableEntity

func NewCreateDashboardElementUnprocessableEntity() *CreateDashboardElementUnprocessableEntity

NewCreateDashboardElementUnprocessableEntity creates a CreateDashboardElementUnprocessableEntity with default headers values

func (*CreateDashboardElementUnprocessableEntity) Error

func (*CreateDashboardElementUnprocessableEntity) GetPayload

type CreateDashboardFilterBadRequest

type CreateDashboardFilterBadRequest struct {
	Payload *models.Error
}
CreateDashboardFilterBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewCreateDashboardFilterBadRequest

func NewCreateDashboardFilterBadRequest() *CreateDashboardFilterBadRequest

NewCreateDashboardFilterBadRequest creates a CreateDashboardFilterBadRequest with default headers values

func (*CreateDashboardFilterBadRequest) Error

func (*CreateDashboardFilterBadRequest) GetPayload

func (o *CreateDashboardFilterBadRequest) GetPayload() *models.Error

type CreateDashboardFilterConflict

type CreateDashboardFilterConflict struct {
	Payload *models.Error
}
CreateDashboardFilterConflict describes a response with status code 409, with default header values.

Resource Already Exists

func NewCreateDashboardFilterConflict

func NewCreateDashboardFilterConflict() *CreateDashboardFilterConflict

NewCreateDashboardFilterConflict creates a CreateDashboardFilterConflict with default headers values

func (*CreateDashboardFilterConflict) Error

func (*CreateDashboardFilterConflict) GetPayload

func (o *CreateDashboardFilterConflict) GetPayload() *models.Error

type CreateDashboardFilterNotFound

type CreateDashboardFilterNotFound struct {
	Payload *models.Error
}
CreateDashboardFilterNotFound describes a response with status code 404, with default header values.

Not Found

func NewCreateDashboardFilterNotFound

func NewCreateDashboardFilterNotFound() *CreateDashboardFilterNotFound

NewCreateDashboardFilterNotFound creates a CreateDashboardFilterNotFound with default headers values

func (*CreateDashboardFilterNotFound) Error

func (*CreateDashboardFilterNotFound) GetPayload

func (o *CreateDashboardFilterNotFound) GetPayload() *models.Error

type CreateDashboardFilterOK

type CreateDashboardFilterOK struct {
	Payload *models.DashboardFilter
}
CreateDashboardFilterOK describes a response with status code 200, with default header values.

Dashboard Filter

func NewCreateDashboardFilterOK

func NewCreateDashboardFilterOK() *CreateDashboardFilterOK

NewCreateDashboardFilterOK creates a CreateDashboardFilterOK with default headers values

func (*CreateDashboardFilterOK) Error

func (o *CreateDashboardFilterOK) Error() string

func (*CreateDashboardFilterOK) GetPayload

type CreateDashboardFilterParams

type CreateDashboardFilterParams struct {

	/* Body.

	   Dashboard Filter
	*/
	Body *models.CreateDashboardFilter

	/* Fields.

	   Requested fields
	*/
	Fields *string

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

CreateDashboardFilterParams contains all the parameters to send to the API endpoint

for the create dashboard filter operation.

Typically these are written to a http.Request.

func NewCreateDashboardFilterParams

func NewCreateDashboardFilterParams() *CreateDashboardFilterParams

NewCreateDashboardFilterParams creates a new CreateDashboardFilterParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateDashboardFilterParamsWithContext

func NewCreateDashboardFilterParamsWithContext(ctx context.Context) *CreateDashboardFilterParams

NewCreateDashboardFilterParamsWithContext creates a new CreateDashboardFilterParams object with the ability to set a context for a request.

func NewCreateDashboardFilterParamsWithHTTPClient

func NewCreateDashboardFilterParamsWithHTTPClient(client *http.Client) *CreateDashboardFilterParams

NewCreateDashboardFilterParamsWithHTTPClient creates a new CreateDashboardFilterParams object with the ability to set a custom HTTPClient for a request.

func NewCreateDashboardFilterParamsWithTimeout

func NewCreateDashboardFilterParamsWithTimeout(timeout time.Duration) *CreateDashboardFilterParams

NewCreateDashboardFilterParamsWithTimeout creates a new CreateDashboardFilterParams object with the ability to set a timeout on a request.

func (*CreateDashboardFilterParams) SetBody

SetBody adds the body to the create dashboard filter params

func (*CreateDashboardFilterParams) SetContext

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

SetContext adds the context to the create dashboard filter params

func (*CreateDashboardFilterParams) SetDefaults

func (o *CreateDashboardFilterParams) SetDefaults()

SetDefaults hydrates default values in the create dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardFilterParams) SetFields

func (o *CreateDashboardFilterParams) SetFields(fields *string)

SetFields adds the fields to the create dashboard filter params

func (*CreateDashboardFilterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create dashboard filter params

func (*CreateDashboardFilterParams) SetTimeout

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

SetTimeout adds the timeout to the create dashboard filter params

func (*CreateDashboardFilterParams) WithBody

WithBody adds the body to the create dashboard filter params

func (*CreateDashboardFilterParams) WithContext

WithContext adds the context to the create dashboard filter params

func (*CreateDashboardFilterParams) WithDefaults

WithDefaults hydrates default values in the create dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardFilterParams) WithFields

WithFields adds the fields to the create dashboard filter params

func (*CreateDashboardFilterParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create dashboard filter params

func (*CreateDashboardFilterParams) WithTimeout

WithTimeout adds the timeout to the create dashboard filter params

func (*CreateDashboardFilterParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateDashboardFilterReader

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

CreateDashboardFilterReader is a Reader for the CreateDashboardFilter structure.

func (*CreateDashboardFilterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateDashboardFilterTooManyRequests

type CreateDashboardFilterTooManyRequests struct {
	Payload *models.Error
}
CreateDashboardFilterTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewCreateDashboardFilterTooManyRequests

func NewCreateDashboardFilterTooManyRequests() *CreateDashboardFilterTooManyRequests

NewCreateDashboardFilterTooManyRequests creates a CreateDashboardFilterTooManyRequests with default headers values

func (*CreateDashboardFilterTooManyRequests) Error

func (*CreateDashboardFilterTooManyRequests) GetPayload

type CreateDashboardFilterUnprocessableEntity

type CreateDashboardFilterUnprocessableEntity struct {
	Payload *models.ValidationError
}
CreateDashboardFilterUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewCreateDashboardFilterUnprocessableEntity

func NewCreateDashboardFilterUnprocessableEntity() *CreateDashboardFilterUnprocessableEntity

NewCreateDashboardFilterUnprocessableEntity creates a CreateDashboardFilterUnprocessableEntity with default headers values

func (*CreateDashboardFilterUnprocessableEntity) Error

func (*CreateDashboardFilterUnprocessableEntity) GetPayload

type CreateDashboardLayoutBadRequest

type CreateDashboardLayoutBadRequest struct {
	Payload *models.Error
}
CreateDashboardLayoutBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewCreateDashboardLayoutBadRequest

func NewCreateDashboardLayoutBadRequest() *CreateDashboardLayoutBadRequest

NewCreateDashboardLayoutBadRequest creates a CreateDashboardLayoutBadRequest with default headers values

func (*CreateDashboardLayoutBadRequest) Error

func (*CreateDashboardLayoutBadRequest) GetPayload

func (o *CreateDashboardLayoutBadRequest) GetPayload() *models.Error

type CreateDashboardLayoutConflict

type CreateDashboardLayoutConflict struct {
	Payload *models.Error
}
CreateDashboardLayoutConflict describes a response with status code 409, with default header values.

Resource Already Exists

func NewCreateDashboardLayoutConflict

func NewCreateDashboardLayoutConflict() *CreateDashboardLayoutConflict

NewCreateDashboardLayoutConflict creates a CreateDashboardLayoutConflict with default headers values

func (*CreateDashboardLayoutConflict) Error

func (*CreateDashboardLayoutConflict) GetPayload

func (o *CreateDashboardLayoutConflict) GetPayload() *models.Error

type CreateDashboardLayoutNotFound

type CreateDashboardLayoutNotFound struct {
	Payload *models.Error
}
CreateDashboardLayoutNotFound describes a response with status code 404, with default header values.

Not Found

func NewCreateDashboardLayoutNotFound

func NewCreateDashboardLayoutNotFound() *CreateDashboardLayoutNotFound

NewCreateDashboardLayoutNotFound creates a CreateDashboardLayoutNotFound with default headers values

func (*CreateDashboardLayoutNotFound) Error

func (*CreateDashboardLayoutNotFound) GetPayload

func (o *CreateDashboardLayoutNotFound) GetPayload() *models.Error

type CreateDashboardLayoutOK

type CreateDashboardLayoutOK struct {
	Payload *models.DashboardLayout
}
CreateDashboardLayoutOK describes a response with status code 200, with default header values.

DashboardLayout

func NewCreateDashboardLayoutOK

func NewCreateDashboardLayoutOK() *CreateDashboardLayoutOK

NewCreateDashboardLayoutOK creates a CreateDashboardLayoutOK with default headers values

func (*CreateDashboardLayoutOK) Error

func (o *CreateDashboardLayoutOK) Error() string

func (*CreateDashboardLayoutOK) GetPayload

type CreateDashboardLayoutParams

type CreateDashboardLayoutParams struct {

	/* Body.

	   DashboardLayout
	*/
	Body *models.DashboardLayout

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

CreateDashboardLayoutParams contains all the parameters to send to the API endpoint

for the create dashboard layout operation.

Typically these are written to a http.Request.

func NewCreateDashboardLayoutParams

func NewCreateDashboardLayoutParams() *CreateDashboardLayoutParams

NewCreateDashboardLayoutParams creates a new CreateDashboardLayoutParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateDashboardLayoutParamsWithContext

func NewCreateDashboardLayoutParamsWithContext(ctx context.Context) *CreateDashboardLayoutParams

NewCreateDashboardLayoutParamsWithContext creates a new CreateDashboardLayoutParams object with the ability to set a context for a request.

func NewCreateDashboardLayoutParamsWithHTTPClient

func NewCreateDashboardLayoutParamsWithHTTPClient(client *http.Client) *CreateDashboardLayoutParams

NewCreateDashboardLayoutParamsWithHTTPClient creates a new CreateDashboardLayoutParams object with the ability to set a custom HTTPClient for a request.

func NewCreateDashboardLayoutParamsWithTimeout

func NewCreateDashboardLayoutParamsWithTimeout(timeout time.Duration) *CreateDashboardLayoutParams

NewCreateDashboardLayoutParamsWithTimeout creates a new CreateDashboardLayoutParams object with the ability to set a timeout on a request.

func (*CreateDashboardLayoutParams) SetBody

SetBody adds the body to the create dashboard layout params

func (*CreateDashboardLayoutParams) SetContext

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

SetContext adds the context to the create dashboard layout params

func (*CreateDashboardLayoutParams) SetDefaults

func (o *CreateDashboardLayoutParams) SetDefaults()

SetDefaults hydrates default values in the create dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardLayoutParams) SetFields

func (o *CreateDashboardLayoutParams) SetFields(fields *string)

SetFields adds the fields to the create dashboard layout params

func (*CreateDashboardLayoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create dashboard layout params

func (*CreateDashboardLayoutParams) SetTimeout

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

SetTimeout adds the timeout to the create dashboard layout params

func (*CreateDashboardLayoutParams) WithBody

WithBody adds the body to the create dashboard layout params

func (*CreateDashboardLayoutParams) WithContext

WithContext adds the context to the create dashboard layout params

func (*CreateDashboardLayoutParams) WithDefaults

WithDefaults hydrates default values in the create dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardLayoutParams) WithFields

WithFields adds the fields to the create dashboard layout params

func (*CreateDashboardLayoutParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create dashboard layout params

func (*CreateDashboardLayoutParams) WithTimeout

WithTimeout adds the timeout to the create dashboard layout params

func (*CreateDashboardLayoutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateDashboardLayoutReader

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

CreateDashboardLayoutReader is a Reader for the CreateDashboardLayout structure.

func (*CreateDashboardLayoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateDashboardLayoutTooManyRequests

type CreateDashboardLayoutTooManyRequests struct {
	Payload *models.Error
}
CreateDashboardLayoutTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewCreateDashboardLayoutTooManyRequests

func NewCreateDashboardLayoutTooManyRequests() *CreateDashboardLayoutTooManyRequests

NewCreateDashboardLayoutTooManyRequests creates a CreateDashboardLayoutTooManyRequests with default headers values

func (*CreateDashboardLayoutTooManyRequests) Error

func (*CreateDashboardLayoutTooManyRequests) GetPayload

type CreateDashboardLayoutUnprocessableEntity

type CreateDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}
CreateDashboardLayoutUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewCreateDashboardLayoutUnprocessableEntity

func NewCreateDashboardLayoutUnprocessableEntity() *CreateDashboardLayoutUnprocessableEntity

NewCreateDashboardLayoutUnprocessableEntity creates a CreateDashboardLayoutUnprocessableEntity with default headers values

func (*CreateDashboardLayoutUnprocessableEntity) Error

func (*CreateDashboardLayoutUnprocessableEntity) GetPayload

type CreateDashboardNotFound

type CreateDashboardNotFound struct {
	Payload *models.Error
}
CreateDashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewCreateDashboardNotFound

func NewCreateDashboardNotFound() *CreateDashboardNotFound

NewCreateDashboardNotFound creates a CreateDashboardNotFound with default headers values

func (*CreateDashboardNotFound) Error

func (o *CreateDashboardNotFound) Error() string

func (*CreateDashboardNotFound) GetPayload

func (o *CreateDashboardNotFound) GetPayload() *models.Error

type CreateDashboardOK

type CreateDashboardOK struct {
	Payload *models.Dashboard
}
CreateDashboardOK describes a response with status code 200, with default header values.

Dashboard

func NewCreateDashboardOK

func NewCreateDashboardOK() *CreateDashboardOK

NewCreateDashboardOK creates a CreateDashboardOK with default headers values

func (*CreateDashboardOK) Error

func (o *CreateDashboardOK) Error() string

func (*CreateDashboardOK) GetPayload

func (o *CreateDashboardOK) GetPayload() *models.Dashboard

type CreateDashboardParams

type CreateDashboardParams struct {

	/* Body.

	   Dashboard
	*/
	Body *models.Dashboard

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

CreateDashboardParams contains all the parameters to send to the API endpoint

for the create dashboard operation.

Typically these are written to a http.Request.

func NewCreateDashboardParams

func NewCreateDashboardParams() *CreateDashboardParams

NewCreateDashboardParams creates a new CreateDashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateDashboardParamsWithContext

func NewCreateDashboardParamsWithContext(ctx context.Context) *CreateDashboardParams

NewCreateDashboardParamsWithContext creates a new CreateDashboardParams object with the ability to set a context for a request.

func NewCreateDashboardParamsWithHTTPClient

func NewCreateDashboardParamsWithHTTPClient(client *http.Client) *CreateDashboardParams

NewCreateDashboardParamsWithHTTPClient creates a new CreateDashboardParams object with the ability to set a custom HTTPClient for a request.

func NewCreateDashboardParamsWithTimeout

func NewCreateDashboardParamsWithTimeout(timeout time.Duration) *CreateDashboardParams

NewCreateDashboardParamsWithTimeout creates a new CreateDashboardParams object with the ability to set a timeout on a request.

func (*CreateDashboardParams) SetBody

func (o *CreateDashboardParams) SetBody(body *models.Dashboard)

SetBody adds the body to the create dashboard params

func (*CreateDashboardParams) SetContext

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

SetContext adds the context to the create dashboard params

func (*CreateDashboardParams) SetDefaults

func (o *CreateDashboardParams) SetDefaults()

SetDefaults hydrates default values in the create dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create dashboard params

func (*CreateDashboardParams) SetTimeout

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

SetTimeout adds the timeout to the create dashboard params

func (*CreateDashboardParams) WithBody

WithBody adds the body to the create dashboard params

func (*CreateDashboardParams) WithContext

WithContext adds the context to the create dashboard params

func (*CreateDashboardParams) WithDefaults

func (o *CreateDashboardParams) WithDefaults() *CreateDashboardParams

WithDefaults hydrates default values in the create dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*CreateDashboardParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create dashboard params

func (*CreateDashboardParams) WithTimeout

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

WithTimeout adds the timeout to the create dashboard params

func (*CreateDashboardParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateDashboardReader

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

CreateDashboardReader is a Reader for the CreateDashboard structure.

func (*CreateDashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateDashboardTooManyRequests

type CreateDashboardTooManyRequests struct {
	Payload *models.Error
}
CreateDashboardTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewCreateDashboardTooManyRequests

func NewCreateDashboardTooManyRequests() *CreateDashboardTooManyRequests

NewCreateDashboardTooManyRequests creates a CreateDashboardTooManyRequests with default headers values

func (*CreateDashboardTooManyRequests) Error

func (*CreateDashboardTooManyRequests) GetPayload

func (o *CreateDashboardTooManyRequests) GetPayload() *models.Error

type CreateDashboardUnprocessableEntity

type CreateDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}
CreateDashboardUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewCreateDashboardUnprocessableEntity

func NewCreateDashboardUnprocessableEntity() *CreateDashboardUnprocessableEntity

NewCreateDashboardUnprocessableEntity creates a CreateDashboardUnprocessableEntity with default headers values

func (*CreateDashboardUnprocessableEntity) Error

func (*CreateDashboardUnprocessableEntity) GetPayload

type DashboardAggregateTableLookmlBadRequest

type DashboardAggregateTableLookmlBadRequest struct {
	Payload *models.Error
}
DashboardAggregateTableLookmlBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardAggregateTableLookmlBadRequest

func NewDashboardAggregateTableLookmlBadRequest() *DashboardAggregateTableLookmlBadRequest

NewDashboardAggregateTableLookmlBadRequest creates a DashboardAggregateTableLookmlBadRequest with default headers values

func (*DashboardAggregateTableLookmlBadRequest) Error

func (*DashboardAggregateTableLookmlBadRequest) GetPayload

type DashboardAggregateTableLookmlNotFound

type DashboardAggregateTableLookmlNotFound struct {
	Payload *models.Error
}
DashboardAggregateTableLookmlNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardAggregateTableLookmlNotFound

func NewDashboardAggregateTableLookmlNotFound() *DashboardAggregateTableLookmlNotFound

NewDashboardAggregateTableLookmlNotFound creates a DashboardAggregateTableLookmlNotFound with default headers values

func (*DashboardAggregateTableLookmlNotFound) Error

func (*DashboardAggregateTableLookmlNotFound) GetPayload

type DashboardAggregateTableLookmlOK

type DashboardAggregateTableLookmlOK struct {
	Payload *models.DashboardAggregateTableLookml
}
DashboardAggregateTableLookmlOK describes a response with status code 200, with default header values.

JSON for Aggregate Table LookML

func NewDashboardAggregateTableLookmlOK

func NewDashboardAggregateTableLookmlOK() *DashboardAggregateTableLookmlOK

NewDashboardAggregateTableLookmlOK creates a DashboardAggregateTableLookmlOK with default headers values

func (*DashboardAggregateTableLookmlOK) Error

func (*DashboardAggregateTableLookmlOK) GetPayload

type DashboardAggregateTableLookmlParams

type DashboardAggregateTableLookmlParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

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

DashboardAggregateTableLookmlParams contains all the parameters to send to the API endpoint

for the dashboard aggregate table lookml operation.

Typically these are written to a http.Request.

func NewDashboardAggregateTableLookmlParams

func NewDashboardAggregateTableLookmlParams() *DashboardAggregateTableLookmlParams

NewDashboardAggregateTableLookmlParams creates a new DashboardAggregateTableLookmlParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardAggregateTableLookmlParamsWithContext

func NewDashboardAggregateTableLookmlParamsWithContext(ctx context.Context) *DashboardAggregateTableLookmlParams

NewDashboardAggregateTableLookmlParamsWithContext creates a new DashboardAggregateTableLookmlParams object with the ability to set a context for a request.

func NewDashboardAggregateTableLookmlParamsWithHTTPClient

func NewDashboardAggregateTableLookmlParamsWithHTTPClient(client *http.Client) *DashboardAggregateTableLookmlParams

NewDashboardAggregateTableLookmlParamsWithHTTPClient creates a new DashboardAggregateTableLookmlParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardAggregateTableLookmlParamsWithTimeout

func NewDashboardAggregateTableLookmlParamsWithTimeout(timeout time.Duration) *DashboardAggregateTableLookmlParams

NewDashboardAggregateTableLookmlParamsWithTimeout creates a new DashboardAggregateTableLookmlParams object with the ability to set a timeout on a request.

func (*DashboardAggregateTableLookmlParams) SetContext

SetContext adds the context to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) SetDashboardID

func (o *DashboardAggregateTableLookmlParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) SetDefaults

func (o *DashboardAggregateTableLookmlParams) SetDefaults()

SetDefaults hydrates default values in the dashboard aggregate table lookml params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardAggregateTableLookmlParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) WithContext

WithContext adds the context to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) WithDashboardID

WithDashboardID adds the dashboardID to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) WithDefaults

WithDefaults hydrates default values in the dashboard aggregate table lookml params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardAggregateTableLookmlParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) WithTimeout

WithTimeout adds the timeout to the dashboard aggregate table lookml params

func (*DashboardAggregateTableLookmlParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardAggregateTableLookmlReader

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

DashboardAggregateTableLookmlReader is a Reader for the DashboardAggregateTableLookml structure.

func (*DashboardAggregateTableLookmlReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardBadRequest

type DashboardBadRequest struct {
	Payload *models.Error
}
DashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardBadRequest

func NewDashboardBadRequest() *DashboardBadRequest

NewDashboardBadRequest creates a DashboardBadRequest with default headers values

func (*DashboardBadRequest) Error

func (o *DashboardBadRequest) Error() string

func (*DashboardBadRequest) GetPayload

func (o *DashboardBadRequest) GetPayload() *models.Error

type DashboardDashboardElementsBadRequest

type DashboardDashboardElementsBadRequest struct {
	Payload *models.Error
}
DashboardDashboardElementsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardDashboardElementsBadRequest

func NewDashboardDashboardElementsBadRequest() *DashboardDashboardElementsBadRequest

NewDashboardDashboardElementsBadRequest creates a DashboardDashboardElementsBadRequest with default headers values

func (*DashboardDashboardElementsBadRequest) Error

func (*DashboardDashboardElementsBadRequest) GetPayload

type DashboardDashboardElementsNotFound

type DashboardDashboardElementsNotFound struct {
	Payload *models.Error
}
DashboardDashboardElementsNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardDashboardElementsNotFound

func NewDashboardDashboardElementsNotFound() *DashboardDashboardElementsNotFound

NewDashboardDashboardElementsNotFound creates a DashboardDashboardElementsNotFound with default headers values

func (*DashboardDashboardElementsNotFound) Error

func (*DashboardDashboardElementsNotFound) GetPayload

type DashboardDashboardElementsOK

type DashboardDashboardElementsOK struct {
	Payload []*models.DashboardElement
}
DashboardDashboardElementsOK describes a response with status code 200, with default header values.

DashboardElement

func NewDashboardDashboardElementsOK

func NewDashboardDashboardElementsOK() *DashboardDashboardElementsOK

NewDashboardDashboardElementsOK creates a DashboardDashboardElementsOK with default headers values

func (*DashboardDashboardElementsOK) Error

func (*DashboardDashboardElementsOK) GetPayload

type DashboardDashboardElementsParams

type DashboardDashboardElementsParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardDashboardElementsParams contains all the parameters to send to the API endpoint

for the dashboard dashboard elements operation.

Typically these are written to a http.Request.

func NewDashboardDashboardElementsParams

func NewDashboardDashboardElementsParams() *DashboardDashboardElementsParams

NewDashboardDashboardElementsParams creates a new DashboardDashboardElementsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardDashboardElementsParamsWithContext

func NewDashboardDashboardElementsParamsWithContext(ctx context.Context) *DashboardDashboardElementsParams

NewDashboardDashboardElementsParamsWithContext creates a new DashboardDashboardElementsParams object with the ability to set a context for a request.

func NewDashboardDashboardElementsParamsWithHTTPClient

func NewDashboardDashboardElementsParamsWithHTTPClient(client *http.Client) *DashboardDashboardElementsParams

NewDashboardDashboardElementsParamsWithHTTPClient creates a new DashboardDashboardElementsParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardDashboardElementsParamsWithTimeout

func NewDashboardDashboardElementsParamsWithTimeout(timeout time.Duration) *DashboardDashboardElementsParams

NewDashboardDashboardElementsParamsWithTimeout creates a new DashboardDashboardElementsParams object with the ability to set a timeout on a request.

func (*DashboardDashboardElementsParams) SetContext

SetContext adds the context to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) SetDashboardID

func (o *DashboardDashboardElementsParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) SetDefaults

func (o *DashboardDashboardElementsParams) SetDefaults()

SetDefaults hydrates default values in the dashboard dashboard elements params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardElementsParams) SetFields

func (o *DashboardDashboardElementsParams) SetFields(fields *string)

SetFields adds the fields to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WithContext

WithContext adds the context to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WithDashboardID

WithDashboardID adds the dashboardID to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WithDefaults

WithDefaults hydrates default values in the dashboard dashboard elements params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardElementsParams) WithFields

WithFields adds the fields to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WithTimeout

WithTimeout adds the timeout to the dashboard dashboard elements params

func (*DashboardDashboardElementsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardDashboardElementsReader

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

DashboardDashboardElementsReader is a Reader for the DashboardDashboardElements structure.

func (*DashboardDashboardElementsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardDashboardFiltersBadRequest

type DashboardDashboardFiltersBadRequest struct {
	Payload *models.Error
}
DashboardDashboardFiltersBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardDashboardFiltersBadRequest

func NewDashboardDashboardFiltersBadRequest() *DashboardDashboardFiltersBadRequest

NewDashboardDashboardFiltersBadRequest creates a DashboardDashboardFiltersBadRequest with default headers values

func (*DashboardDashboardFiltersBadRequest) Error

func (*DashboardDashboardFiltersBadRequest) GetPayload

type DashboardDashboardFiltersNotFound

type DashboardDashboardFiltersNotFound struct {
	Payload *models.Error
}
DashboardDashboardFiltersNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardDashboardFiltersNotFound

func NewDashboardDashboardFiltersNotFound() *DashboardDashboardFiltersNotFound

NewDashboardDashboardFiltersNotFound creates a DashboardDashboardFiltersNotFound with default headers values

func (*DashboardDashboardFiltersNotFound) Error

func (*DashboardDashboardFiltersNotFound) GetPayload

type DashboardDashboardFiltersOK

type DashboardDashboardFiltersOK struct {
	Payload []*models.DashboardFilter
}
DashboardDashboardFiltersOK describes a response with status code 200, with default header values.

Dashboard Filter

func NewDashboardDashboardFiltersOK

func NewDashboardDashboardFiltersOK() *DashboardDashboardFiltersOK

NewDashboardDashboardFiltersOK creates a DashboardDashboardFiltersOK with default headers values

func (*DashboardDashboardFiltersOK) Error

func (*DashboardDashboardFiltersOK) GetPayload

type DashboardDashboardFiltersParams

type DashboardDashboardFiltersParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardDashboardFiltersParams contains all the parameters to send to the API endpoint

for the dashboard dashboard filters operation.

Typically these are written to a http.Request.

func NewDashboardDashboardFiltersParams

func NewDashboardDashboardFiltersParams() *DashboardDashboardFiltersParams

NewDashboardDashboardFiltersParams creates a new DashboardDashboardFiltersParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardDashboardFiltersParamsWithContext

func NewDashboardDashboardFiltersParamsWithContext(ctx context.Context) *DashboardDashboardFiltersParams

NewDashboardDashboardFiltersParamsWithContext creates a new DashboardDashboardFiltersParams object with the ability to set a context for a request.

func NewDashboardDashboardFiltersParamsWithHTTPClient

func NewDashboardDashboardFiltersParamsWithHTTPClient(client *http.Client) *DashboardDashboardFiltersParams

NewDashboardDashboardFiltersParamsWithHTTPClient creates a new DashboardDashboardFiltersParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardDashboardFiltersParamsWithTimeout

func NewDashboardDashboardFiltersParamsWithTimeout(timeout time.Duration) *DashboardDashboardFiltersParams

NewDashboardDashboardFiltersParamsWithTimeout creates a new DashboardDashboardFiltersParams object with the ability to set a timeout on a request.

func (*DashboardDashboardFiltersParams) SetContext

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

SetContext adds the context to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) SetDashboardID

func (o *DashboardDashboardFiltersParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) SetDefaults

func (o *DashboardDashboardFiltersParams) SetDefaults()

SetDefaults hydrates default values in the dashboard dashboard filters params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardFiltersParams) SetFields

func (o *DashboardDashboardFiltersParams) SetFields(fields *string)

SetFields adds the fields to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WithContext

WithContext adds the context to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WithDashboardID

WithDashboardID adds the dashboardID to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WithDefaults

WithDefaults hydrates default values in the dashboard dashboard filters params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardFiltersParams) WithFields

WithFields adds the fields to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WithTimeout

WithTimeout adds the timeout to the dashboard dashboard filters params

func (*DashboardDashboardFiltersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardDashboardFiltersReader

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

DashboardDashboardFiltersReader is a Reader for the DashboardDashboardFilters structure.

func (*DashboardDashboardFiltersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardDashboardLayoutsBadRequest

type DashboardDashboardLayoutsBadRequest struct {
	Payload *models.Error
}
DashboardDashboardLayoutsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardDashboardLayoutsBadRequest

func NewDashboardDashboardLayoutsBadRequest() *DashboardDashboardLayoutsBadRequest

NewDashboardDashboardLayoutsBadRequest creates a DashboardDashboardLayoutsBadRequest with default headers values

func (*DashboardDashboardLayoutsBadRequest) Error

func (*DashboardDashboardLayoutsBadRequest) GetPayload

type DashboardDashboardLayoutsNotFound

type DashboardDashboardLayoutsNotFound struct {
	Payload *models.Error
}
DashboardDashboardLayoutsNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardDashboardLayoutsNotFound

func NewDashboardDashboardLayoutsNotFound() *DashboardDashboardLayoutsNotFound

NewDashboardDashboardLayoutsNotFound creates a DashboardDashboardLayoutsNotFound with default headers values

func (*DashboardDashboardLayoutsNotFound) Error

func (*DashboardDashboardLayoutsNotFound) GetPayload

type DashboardDashboardLayoutsOK

type DashboardDashboardLayoutsOK struct {
	Payload []*models.DashboardLayout
}
DashboardDashboardLayoutsOK describes a response with status code 200, with default header values.

DashboardLayout

func NewDashboardDashboardLayoutsOK

func NewDashboardDashboardLayoutsOK() *DashboardDashboardLayoutsOK

NewDashboardDashboardLayoutsOK creates a DashboardDashboardLayoutsOK with default headers values

func (*DashboardDashboardLayoutsOK) Error

func (*DashboardDashboardLayoutsOK) GetPayload

type DashboardDashboardLayoutsParams

type DashboardDashboardLayoutsParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardDashboardLayoutsParams contains all the parameters to send to the API endpoint

for the dashboard dashboard layouts operation.

Typically these are written to a http.Request.

func NewDashboardDashboardLayoutsParams

func NewDashboardDashboardLayoutsParams() *DashboardDashboardLayoutsParams

NewDashboardDashboardLayoutsParams creates a new DashboardDashboardLayoutsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardDashboardLayoutsParamsWithContext

func NewDashboardDashboardLayoutsParamsWithContext(ctx context.Context) *DashboardDashboardLayoutsParams

NewDashboardDashboardLayoutsParamsWithContext creates a new DashboardDashboardLayoutsParams object with the ability to set a context for a request.

func NewDashboardDashboardLayoutsParamsWithHTTPClient

func NewDashboardDashboardLayoutsParamsWithHTTPClient(client *http.Client) *DashboardDashboardLayoutsParams

NewDashboardDashboardLayoutsParamsWithHTTPClient creates a new DashboardDashboardLayoutsParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardDashboardLayoutsParamsWithTimeout

func NewDashboardDashboardLayoutsParamsWithTimeout(timeout time.Duration) *DashboardDashboardLayoutsParams

NewDashboardDashboardLayoutsParamsWithTimeout creates a new DashboardDashboardLayoutsParams object with the ability to set a timeout on a request.

func (*DashboardDashboardLayoutsParams) SetContext

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

SetContext adds the context to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) SetDashboardID

func (o *DashboardDashboardLayoutsParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) SetDefaults

func (o *DashboardDashboardLayoutsParams) SetDefaults()

SetDefaults hydrates default values in the dashboard dashboard layouts params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardLayoutsParams) SetFields

func (o *DashboardDashboardLayoutsParams) SetFields(fields *string)

SetFields adds the fields to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WithContext

WithContext adds the context to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WithDashboardID

WithDashboardID adds the dashboardID to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WithDefaults

WithDefaults hydrates default values in the dashboard dashboard layouts params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardDashboardLayoutsParams) WithFields

WithFields adds the fields to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WithTimeout

WithTimeout adds the timeout to the dashboard dashboard layouts params

func (*DashboardDashboardLayoutsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardDashboardLayoutsReader

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

DashboardDashboardLayoutsReader is a Reader for the DashboardDashboardLayouts structure.

func (*DashboardDashboardLayoutsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardElementBadRequest

type DashboardElementBadRequest struct {
	Payload *models.Error
}
DashboardElementBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardElementBadRequest

func NewDashboardElementBadRequest() *DashboardElementBadRequest

NewDashboardElementBadRequest creates a DashboardElementBadRequest with default headers values

func (*DashboardElementBadRequest) Error

func (*DashboardElementBadRequest) GetPayload

func (o *DashboardElementBadRequest) GetPayload() *models.Error

type DashboardElementNotFound

type DashboardElementNotFound struct {
	Payload *models.Error
}
DashboardElementNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardElementNotFound

func NewDashboardElementNotFound() *DashboardElementNotFound

NewDashboardElementNotFound creates a DashboardElementNotFound with default headers values

func (*DashboardElementNotFound) Error

func (o *DashboardElementNotFound) Error() string

func (*DashboardElementNotFound) GetPayload

func (o *DashboardElementNotFound) GetPayload() *models.Error

type DashboardElementOK

type DashboardElementOK struct {
	Payload *models.DashboardElement
}
DashboardElementOK describes a response with status code 200, with default header values.

DashboardElement

func NewDashboardElementOK

func NewDashboardElementOK() *DashboardElementOK

NewDashboardElementOK creates a DashboardElementOK with default headers values

func (*DashboardElementOK) Error

func (o *DashboardElementOK) Error() string

func (*DashboardElementOK) GetPayload

func (o *DashboardElementOK) GetPayload() *models.DashboardElement

type DashboardElementParams

type DashboardElementParams struct {

	/* DashboardElementID.

	   Id of dashboard element
	*/
	DashboardElementID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardElementParams contains all the parameters to send to the API endpoint

for the dashboard element operation.

Typically these are written to a http.Request.

func NewDashboardElementParams

func NewDashboardElementParams() *DashboardElementParams

NewDashboardElementParams creates a new DashboardElementParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardElementParamsWithContext

func NewDashboardElementParamsWithContext(ctx context.Context) *DashboardElementParams

NewDashboardElementParamsWithContext creates a new DashboardElementParams object with the ability to set a context for a request.

func NewDashboardElementParamsWithHTTPClient

func NewDashboardElementParamsWithHTTPClient(client *http.Client) *DashboardElementParams

NewDashboardElementParamsWithHTTPClient creates a new DashboardElementParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardElementParamsWithTimeout

func NewDashboardElementParamsWithTimeout(timeout time.Duration) *DashboardElementParams

NewDashboardElementParamsWithTimeout creates a new DashboardElementParams object with the ability to set a timeout on a request.

func (*DashboardElementParams) SetContext

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

SetContext adds the context to the dashboard element params

func (*DashboardElementParams) SetDashboardElementID

func (o *DashboardElementParams) SetDashboardElementID(dashboardElementID string)

SetDashboardElementID adds the dashboardElementId to the dashboard element params

func (*DashboardElementParams) SetDefaults

func (o *DashboardElementParams) SetDefaults()

SetDefaults hydrates default values in the dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardElementParams) SetFields

func (o *DashboardElementParams) SetFields(fields *string)

SetFields adds the fields to the dashboard element params

func (*DashboardElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard element params

func (*DashboardElementParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard element params

func (*DashboardElementParams) WithContext

WithContext adds the context to the dashboard element params

func (*DashboardElementParams) WithDashboardElementID

func (o *DashboardElementParams) WithDashboardElementID(dashboardElementID string) *DashboardElementParams

WithDashboardElementID adds the dashboardElementID to the dashboard element params

func (*DashboardElementParams) WithDefaults

WithDefaults hydrates default values in the dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardElementParams) WithFields

func (o *DashboardElementParams) WithFields(fields *string) *DashboardElementParams

WithFields adds the fields to the dashboard element params

func (*DashboardElementParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the dashboard element params

func (*DashboardElementParams) WithTimeout

WithTimeout adds the timeout to the dashboard element params

func (*DashboardElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardElementReader

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

DashboardElementReader is a Reader for the DashboardElement structure.

func (*DashboardElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardFilterBadRequest

type DashboardFilterBadRequest struct {
	Payload *models.Error
}
DashboardFilterBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardFilterBadRequest

func NewDashboardFilterBadRequest() *DashboardFilterBadRequest

NewDashboardFilterBadRequest creates a DashboardFilterBadRequest with default headers values

func (*DashboardFilterBadRequest) Error

func (o *DashboardFilterBadRequest) Error() string

func (*DashboardFilterBadRequest) GetPayload

func (o *DashboardFilterBadRequest) GetPayload() *models.Error

type DashboardFilterNotFound

type DashboardFilterNotFound struct {
	Payload *models.Error
}
DashboardFilterNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardFilterNotFound

func NewDashboardFilterNotFound() *DashboardFilterNotFound

NewDashboardFilterNotFound creates a DashboardFilterNotFound with default headers values

func (*DashboardFilterNotFound) Error

func (o *DashboardFilterNotFound) Error() string

func (*DashboardFilterNotFound) GetPayload

func (o *DashboardFilterNotFound) GetPayload() *models.Error

type DashboardFilterOK

type DashboardFilterOK struct {
	Payload *models.DashboardFilter
}
DashboardFilterOK describes a response with status code 200, with default header values.

Dashboard Filter

func NewDashboardFilterOK

func NewDashboardFilterOK() *DashboardFilterOK

NewDashboardFilterOK creates a DashboardFilterOK with default headers values

func (*DashboardFilterOK) Error

func (o *DashboardFilterOK) Error() string

func (*DashboardFilterOK) GetPayload

func (o *DashboardFilterOK) GetPayload() *models.DashboardFilter

type DashboardFilterParams

type DashboardFilterParams struct {

	/* DashboardFilterID.

	   Id of dashboard filters
	*/
	DashboardFilterID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardFilterParams contains all the parameters to send to the API endpoint

for the dashboard filter operation.

Typically these are written to a http.Request.

func NewDashboardFilterParams

func NewDashboardFilterParams() *DashboardFilterParams

NewDashboardFilterParams creates a new DashboardFilterParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardFilterParamsWithContext

func NewDashboardFilterParamsWithContext(ctx context.Context) *DashboardFilterParams

NewDashboardFilterParamsWithContext creates a new DashboardFilterParams object with the ability to set a context for a request.

func NewDashboardFilterParamsWithHTTPClient

func NewDashboardFilterParamsWithHTTPClient(client *http.Client) *DashboardFilterParams

NewDashboardFilterParamsWithHTTPClient creates a new DashboardFilterParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardFilterParamsWithTimeout

func NewDashboardFilterParamsWithTimeout(timeout time.Duration) *DashboardFilterParams

NewDashboardFilterParamsWithTimeout creates a new DashboardFilterParams object with the ability to set a timeout on a request.

func (*DashboardFilterParams) SetContext

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

SetContext adds the context to the dashboard filter params

func (*DashboardFilterParams) SetDashboardFilterID

func (o *DashboardFilterParams) SetDashboardFilterID(dashboardFilterID string)

SetDashboardFilterID adds the dashboardFilterId to the dashboard filter params

func (*DashboardFilterParams) SetDefaults

func (o *DashboardFilterParams) SetDefaults()

SetDefaults hydrates default values in the dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardFilterParams) SetFields

func (o *DashboardFilterParams) SetFields(fields *string)

SetFields adds the fields to the dashboard filter params

func (*DashboardFilterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard filter params

func (*DashboardFilterParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard filter params

func (*DashboardFilterParams) WithContext

WithContext adds the context to the dashboard filter params

func (*DashboardFilterParams) WithDashboardFilterID

func (o *DashboardFilterParams) WithDashboardFilterID(dashboardFilterID string) *DashboardFilterParams

WithDashboardFilterID adds the dashboardFilterID to the dashboard filter params

func (*DashboardFilterParams) WithDefaults

func (o *DashboardFilterParams) WithDefaults() *DashboardFilterParams

WithDefaults hydrates default values in the dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardFilterParams) WithFields

func (o *DashboardFilterParams) WithFields(fields *string) *DashboardFilterParams

WithFields adds the fields to the dashboard filter params

func (*DashboardFilterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the dashboard filter params

func (*DashboardFilterParams) WithTimeout

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

WithTimeout adds the timeout to the dashboard filter params

func (*DashboardFilterParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DashboardFilterReader

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

DashboardFilterReader is a Reader for the DashboardFilter structure.

func (*DashboardFilterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardLayoutBadRequest

type DashboardLayoutBadRequest struct {
	Payload *models.Error
}
DashboardLayoutBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardLayoutBadRequest

func NewDashboardLayoutBadRequest() *DashboardLayoutBadRequest

NewDashboardLayoutBadRequest creates a DashboardLayoutBadRequest with default headers values

func (*DashboardLayoutBadRequest) Error

func (o *DashboardLayoutBadRequest) Error() string

func (*DashboardLayoutBadRequest) GetPayload

func (o *DashboardLayoutBadRequest) GetPayload() *models.Error

type DashboardLayoutComponentBadRequest

type DashboardLayoutComponentBadRequest struct {
	Payload *models.Error
}
DashboardLayoutComponentBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardLayoutComponentBadRequest

func NewDashboardLayoutComponentBadRequest() *DashboardLayoutComponentBadRequest

NewDashboardLayoutComponentBadRequest creates a DashboardLayoutComponentBadRequest with default headers values

func (*DashboardLayoutComponentBadRequest) Error

func (*DashboardLayoutComponentBadRequest) GetPayload

type DashboardLayoutComponentNotFound

type DashboardLayoutComponentNotFound struct {
	Payload *models.Error
}
DashboardLayoutComponentNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardLayoutComponentNotFound

func NewDashboardLayoutComponentNotFound() *DashboardLayoutComponentNotFound

NewDashboardLayoutComponentNotFound creates a DashboardLayoutComponentNotFound with default headers values

func (*DashboardLayoutComponentNotFound) Error

func (*DashboardLayoutComponentNotFound) GetPayload

type DashboardLayoutComponentOK

type DashboardLayoutComponentOK struct {
	Payload *models.DashboardLayoutComponent
}
DashboardLayoutComponentOK describes a response with status code 200, with default header values.

DashboardLayoutComponent

func NewDashboardLayoutComponentOK

func NewDashboardLayoutComponentOK() *DashboardLayoutComponentOK

NewDashboardLayoutComponentOK creates a DashboardLayoutComponentOK with default headers values

func (*DashboardLayoutComponentOK) Error

func (*DashboardLayoutComponentOK) GetPayload

type DashboardLayoutComponentParams

type DashboardLayoutComponentParams struct {

	/* DashboardLayoutComponentID.

	   Id of dashboard layout component
	*/
	DashboardLayoutComponentID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardLayoutComponentParams contains all the parameters to send to the API endpoint

for the dashboard layout component operation.

Typically these are written to a http.Request.

func NewDashboardLayoutComponentParams

func NewDashboardLayoutComponentParams() *DashboardLayoutComponentParams

NewDashboardLayoutComponentParams creates a new DashboardLayoutComponentParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardLayoutComponentParamsWithContext

func NewDashboardLayoutComponentParamsWithContext(ctx context.Context) *DashboardLayoutComponentParams

NewDashboardLayoutComponentParamsWithContext creates a new DashboardLayoutComponentParams object with the ability to set a context for a request.

func NewDashboardLayoutComponentParamsWithHTTPClient

func NewDashboardLayoutComponentParamsWithHTTPClient(client *http.Client) *DashboardLayoutComponentParams

NewDashboardLayoutComponentParamsWithHTTPClient creates a new DashboardLayoutComponentParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardLayoutComponentParamsWithTimeout

func NewDashboardLayoutComponentParamsWithTimeout(timeout time.Duration) *DashboardLayoutComponentParams

NewDashboardLayoutComponentParamsWithTimeout creates a new DashboardLayoutComponentParams object with the ability to set a timeout on a request.

func (*DashboardLayoutComponentParams) SetContext

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

SetContext adds the context to the dashboard layout component params

func (*DashboardLayoutComponentParams) SetDashboardLayoutComponentID

func (o *DashboardLayoutComponentParams) SetDashboardLayoutComponentID(dashboardLayoutComponentID string)

SetDashboardLayoutComponentID adds the dashboardLayoutComponentId to the dashboard layout component params

func (*DashboardLayoutComponentParams) SetDefaults

func (o *DashboardLayoutComponentParams) SetDefaults()

SetDefaults hydrates default values in the dashboard layout component params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutComponentParams) SetFields

func (o *DashboardLayoutComponentParams) SetFields(fields *string)

SetFields adds the fields to the dashboard layout component params

func (*DashboardLayoutComponentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard layout component params

func (*DashboardLayoutComponentParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard layout component params

func (*DashboardLayoutComponentParams) WithContext

WithContext adds the context to the dashboard layout component params

func (*DashboardLayoutComponentParams) WithDashboardLayoutComponentID

func (o *DashboardLayoutComponentParams) WithDashboardLayoutComponentID(dashboardLayoutComponentID string) *DashboardLayoutComponentParams

WithDashboardLayoutComponentID adds the dashboardLayoutComponentID to the dashboard layout component params

func (*DashboardLayoutComponentParams) WithDefaults

WithDefaults hydrates default values in the dashboard layout component params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutComponentParams) WithFields

WithFields adds the fields to the dashboard layout component params

func (*DashboardLayoutComponentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard layout component params

func (*DashboardLayoutComponentParams) WithTimeout

WithTimeout adds the timeout to the dashboard layout component params

func (*DashboardLayoutComponentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardLayoutComponentReader

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

DashboardLayoutComponentReader is a Reader for the DashboardLayoutComponent structure.

func (*DashboardLayoutComponentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardLayoutDashboardLayoutComponentsBadRequest

type DashboardLayoutDashboardLayoutComponentsBadRequest struct {
	Payload *models.Error
}
DashboardLayoutDashboardLayoutComponentsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardLayoutDashboardLayoutComponentsBadRequest

func NewDashboardLayoutDashboardLayoutComponentsBadRequest() *DashboardLayoutDashboardLayoutComponentsBadRequest

NewDashboardLayoutDashboardLayoutComponentsBadRequest creates a DashboardLayoutDashboardLayoutComponentsBadRequest with default headers values

func (*DashboardLayoutDashboardLayoutComponentsBadRequest) Error

func (*DashboardLayoutDashboardLayoutComponentsBadRequest) GetPayload

type DashboardLayoutDashboardLayoutComponentsNotFound

type DashboardLayoutDashboardLayoutComponentsNotFound struct {
	Payload *models.Error
}
DashboardLayoutDashboardLayoutComponentsNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardLayoutDashboardLayoutComponentsNotFound

func NewDashboardLayoutDashboardLayoutComponentsNotFound() *DashboardLayoutDashboardLayoutComponentsNotFound

NewDashboardLayoutDashboardLayoutComponentsNotFound creates a DashboardLayoutDashboardLayoutComponentsNotFound with default headers values

func (*DashboardLayoutDashboardLayoutComponentsNotFound) Error

func (*DashboardLayoutDashboardLayoutComponentsNotFound) GetPayload

type DashboardLayoutDashboardLayoutComponentsOK

type DashboardLayoutDashboardLayoutComponentsOK struct {
	Payload []*models.DashboardLayoutComponent
}
DashboardLayoutDashboardLayoutComponentsOK describes a response with status code 200, with default header values.

DashboardLayoutComponent

func NewDashboardLayoutDashboardLayoutComponentsOK

func NewDashboardLayoutDashboardLayoutComponentsOK() *DashboardLayoutDashboardLayoutComponentsOK

NewDashboardLayoutDashboardLayoutComponentsOK creates a DashboardLayoutDashboardLayoutComponentsOK with default headers values

func (*DashboardLayoutDashboardLayoutComponentsOK) Error

func (*DashboardLayoutDashboardLayoutComponentsOK) GetPayload

type DashboardLayoutDashboardLayoutComponentsParams

type DashboardLayoutDashboardLayoutComponentsParams struct {

	/* DashboardLayoutID.

	   Id of dashboard layout component
	*/
	DashboardLayoutID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardLayoutDashboardLayoutComponentsParams contains all the parameters to send to the API endpoint

for the dashboard layout dashboard layout components operation.

Typically these are written to a http.Request.

func NewDashboardLayoutDashboardLayoutComponentsParams

func NewDashboardLayoutDashboardLayoutComponentsParams() *DashboardLayoutDashboardLayoutComponentsParams

NewDashboardLayoutDashboardLayoutComponentsParams creates a new DashboardLayoutDashboardLayoutComponentsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardLayoutDashboardLayoutComponentsParamsWithContext

func NewDashboardLayoutDashboardLayoutComponentsParamsWithContext(ctx context.Context) *DashboardLayoutDashboardLayoutComponentsParams

NewDashboardLayoutDashboardLayoutComponentsParamsWithContext creates a new DashboardLayoutDashboardLayoutComponentsParams object with the ability to set a context for a request.

func NewDashboardLayoutDashboardLayoutComponentsParamsWithHTTPClient

func NewDashboardLayoutDashboardLayoutComponentsParamsWithHTTPClient(client *http.Client) *DashboardLayoutDashboardLayoutComponentsParams

NewDashboardLayoutDashboardLayoutComponentsParamsWithHTTPClient creates a new DashboardLayoutDashboardLayoutComponentsParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardLayoutDashboardLayoutComponentsParamsWithTimeout

func NewDashboardLayoutDashboardLayoutComponentsParamsWithTimeout(timeout time.Duration) *DashboardLayoutDashboardLayoutComponentsParams

NewDashboardLayoutDashboardLayoutComponentsParamsWithTimeout creates a new DashboardLayoutDashboardLayoutComponentsParams object with the ability to set a timeout on a request.

func (*DashboardLayoutDashboardLayoutComponentsParams) SetContext

SetContext adds the context to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) SetDashboardLayoutID

func (o *DashboardLayoutDashboardLayoutComponentsParams) SetDashboardLayoutID(dashboardLayoutID string)

SetDashboardLayoutID adds the dashboardLayoutId to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) SetDefaults

SetDefaults hydrates default values in the dashboard layout dashboard layout components params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutDashboardLayoutComponentsParams) SetFields

SetFields adds the fields to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) SetTimeout

SetTimeout adds the timeout to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WithContext

WithContext adds the context to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WithDashboardLayoutID

WithDashboardLayoutID adds the dashboardLayoutID to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WithDefaults

WithDefaults hydrates default values in the dashboard layout dashboard layout components params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutDashboardLayoutComponentsParams) WithFields

WithFields adds the fields to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WithTimeout

WithTimeout adds the timeout to the dashboard layout dashboard layout components params

func (*DashboardLayoutDashboardLayoutComponentsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DashboardLayoutDashboardLayoutComponentsReader

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

DashboardLayoutDashboardLayoutComponentsReader is a Reader for the DashboardLayoutDashboardLayoutComponents structure.

func (*DashboardLayoutDashboardLayoutComponentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardLayoutNotFound

type DashboardLayoutNotFound struct {
	Payload *models.Error
}
DashboardLayoutNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardLayoutNotFound

func NewDashboardLayoutNotFound() *DashboardLayoutNotFound

NewDashboardLayoutNotFound creates a DashboardLayoutNotFound with default headers values

func (*DashboardLayoutNotFound) Error

func (o *DashboardLayoutNotFound) Error() string

func (*DashboardLayoutNotFound) GetPayload

func (o *DashboardLayoutNotFound) GetPayload() *models.Error

type DashboardLayoutOK

type DashboardLayoutOK struct {
	Payload *models.DashboardLayout
}
DashboardLayoutOK describes a response with status code 200, with default header values.

DashboardLayout

func NewDashboardLayoutOK

func NewDashboardLayoutOK() *DashboardLayoutOK

NewDashboardLayoutOK creates a DashboardLayoutOK with default headers values

func (*DashboardLayoutOK) Error

func (o *DashboardLayoutOK) Error() string

func (*DashboardLayoutOK) GetPayload

func (o *DashboardLayoutOK) GetPayload() *models.DashboardLayout

type DashboardLayoutParams

type DashboardLayoutParams struct {

	/* DashboardLayoutID.

	   Id of dashboard layouts
	*/
	DashboardLayoutID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardLayoutParams contains all the parameters to send to the API endpoint

for the dashboard layout operation.

Typically these are written to a http.Request.

func NewDashboardLayoutParams

func NewDashboardLayoutParams() *DashboardLayoutParams

NewDashboardLayoutParams creates a new DashboardLayoutParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardLayoutParamsWithContext

func NewDashboardLayoutParamsWithContext(ctx context.Context) *DashboardLayoutParams

NewDashboardLayoutParamsWithContext creates a new DashboardLayoutParams object with the ability to set a context for a request.

func NewDashboardLayoutParamsWithHTTPClient

func NewDashboardLayoutParamsWithHTTPClient(client *http.Client) *DashboardLayoutParams

NewDashboardLayoutParamsWithHTTPClient creates a new DashboardLayoutParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardLayoutParamsWithTimeout

func NewDashboardLayoutParamsWithTimeout(timeout time.Duration) *DashboardLayoutParams

NewDashboardLayoutParamsWithTimeout creates a new DashboardLayoutParams object with the ability to set a timeout on a request.

func (*DashboardLayoutParams) SetContext

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

SetContext adds the context to the dashboard layout params

func (*DashboardLayoutParams) SetDashboardLayoutID

func (o *DashboardLayoutParams) SetDashboardLayoutID(dashboardLayoutID string)

SetDashboardLayoutID adds the dashboardLayoutId to the dashboard layout params

func (*DashboardLayoutParams) SetDefaults

func (o *DashboardLayoutParams) SetDefaults()

SetDefaults hydrates default values in the dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutParams) SetFields

func (o *DashboardLayoutParams) SetFields(fields *string)

SetFields adds the fields to the dashboard layout params

func (*DashboardLayoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard layout params

func (*DashboardLayoutParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard layout params

func (*DashboardLayoutParams) WithContext

WithContext adds the context to the dashboard layout params

func (*DashboardLayoutParams) WithDashboardLayoutID

func (o *DashboardLayoutParams) WithDashboardLayoutID(dashboardLayoutID string) *DashboardLayoutParams

WithDashboardLayoutID adds the dashboardLayoutID to the dashboard layout params

func (*DashboardLayoutParams) WithDefaults

func (o *DashboardLayoutParams) WithDefaults() *DashboardLayoutParams

WithDefaults hydrates default values in the dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLayoutParams) WithFields

func (o *DashboardLayoutParams) WithFields(fields *string) *DashboardLayoutParams

WithFields adds the fields to the dashboard layout params

func (*DashboardLayoutParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the dashboard layout params

func (*DashboardLayoutParams) WithTimeout

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

WithTimeout adds the timeout to the dashboard layout params

func (*DashboardLayoutParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DashboardLayoutReader

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

DashboardLayoutReader is a Reader for the DashboardLayout structure.

func (*DashboardLayoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardLookmlBadRequest

type DashboardLookmlBadRequest struct {
	Payload *models.Error
}
DashboardLookmlBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDashboardLookmlBadRequest

func NewDashboardLookmlBadRequest() *DashboardLookmlBadRequest

NewDashboardLookmlBadRequest creates a DashboardLookmlBadRequest with default headers values

func (*DashboardLookmlBadRequest) Error

func (o *DashboardLookmlBadRequest) Error() string

func (*DashboardLookmlBadRequest) GetPayload

func (o *DashboardLookmlBadRequest) GetPayload() *models.Error

type DashboardLookmlNotFound

type DashboardLookmlNotFound struct {
	Payload *models.Error
}
DashboardLookmlNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardLookmlNotFound

func NewDashboardLookmlNotFound() *DashboardLookmlNotFound

NewDashboardLookmlNotFound creates a DashboardLookmlNotFound with default headers values

func (*DashboardLookmlNotFound) Error

func (o *DashboardLookmlNotFound) Error() string

func (*DashboardLookmlNotFound) GetPayload

func (o *DashboardLookmlNotFound) GetPayload() *models.Error

type DashboardLookmlOK

type DashboardLookmlOK struct {
	Payload *models.DashboardLookml
}
DashboardLookmlOK describes a response with status code 200, with default header values.

json of dashboard

func NewDashboardLookmlOK

func NewDashboardLookmlOK() *DashboardLookmlOK

NewDashboardLookmlOK creates a DashboardLookmlOK with default headers values

func (*DashboardLookmlOK) Error

func (o *DashboardLookmlOK) Error() string

func (*DashboardLookmlOK) GetPayload

func (o *DashboardLookmlOK) GetPayload() *models.DashboardLookml

type DashboardLookmlParams

type DashboardLookmlParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

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

DashboardLookmlParams contains all the parameters to send to the API endpoint

for the dashboard lookml operation.

Typically these are written to a http.Request.

func NewDashboardLookmlParams

func NewDashboardLookmlParams() *DashboardLookmlParams

NewDashboardLookmlParams creates a new DashboardLookmlParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardLookmlParamsWithContext

func NewDashboardLookmlParamsWithContext(ctx context.Context) *DashboardLookmlParams

NewDashboardLookmlParamsWithContext creates a new DashboardLookmlParams object with the ability to set a context for a request.

func NewDashboardLookmlParamsWithHTTPClient

func NewDashboardLookmlParamsWithHTTPClient(client *http.Client) *DashboardLookmlParams

NewDashboardLookmlParamsWithHTTPClient creates a new DashboardLookmlParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardLookmlParamsWithTimeout

func NewDashboardLookmlParamsWithTimeout(timeout time.Duration) *DashboardLookmlParams

NewDashboardLookmlParamsWithTimeout creates a new DashboardLookmlParams object with the ability to set a timeout on a request.

func (*DashboardLookmlParams) SetContext

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

SetContext adds the context to the dashboard lookml params

func (*DashboardLookmlParams) SetDashboardID

func (o *DashboardLookmlParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard lookml params

func (*DashboardLookmlParams) SetDefaults

func (o *DashboardLookmlParams) SetDefaults()

SetDefaults hydrates default values in the dashboard lookml params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLookmlParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard lookml params

func (*DashboardLookmlParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard lookml params

func (*DashboardLookmlParams) WithContext

WithContext adds the context to the dashboard lookml params

func (*DashboardLookmlParams) WithDashboardID

func (o *DashboardLookmlParams) WithDashboardID(dashboardID string) *DashboardLookmlParams

WithDashboardID adds the dashboardID to the dashboard lookml params

func (*DashboardLookmlParams) WithDefaults

func (o *DashboardLookmlParams) WithDefaults() *DashboardLookmlParams

WithDefaults hydrates default values in the dashboard lookml params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardLookmlParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the dashboard lookml params

func (*DashboardLookmlParams) WithTimeout

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

WithTimeout adds the timeout to the dashboard lookml params

func (*DashboardLookmlParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DashboardLookmlReader

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

DashboardLookmlReader is a Reader for the DashboardLookml structure.

func (*DashboardLookmlReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DashboardNotFound

type DashboardNotFound struct {
	Payload *models.Error
}
DashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewDashboardNotFound

func NewDashboardNotFound() *DashboardNotFound

NewDashboardNotFound creates a DashboardNotFound with default headers values

func (*DashboardNotFound) Error

func (o *DashboardNotFound) Error() string

func (*DashboardNotFound) GetPayload

func (o *DashboardNotFound) GetPayload() *models.Error

type DashboardOK

type DashboardOK struct {
	Payload *models.Dashboard
}
DashboardOK describes a response with status code 200, with default header values.

Dashboard

func NewDashboardOK

func NewDashboardOK() *DashboardOK

NewDashboardOK creates a DashboardOK with default headers values

func (*DashboardOK) Error

func (o *DashboardOK) Error() string

func (*DashboardOK) GetPayload

func (o *DashboardOK) GetPayload() *models.Dashboard

type DashboardParams

type DashboardParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

DashboardParams contains all the parameters to send to the API endpoint

for the dashboard operation.

Typically these are written to a http.Request.

func NewDashboardParams

func NewDashboardParams() *DashboardParams

NewDashboardParams creates a new DashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDashboardParamsWithContext

func NewDashboardParamsWithContext(ctx context.Context) *DashboardParams

NewDashboardParamsWithContext creates a new DashboardParams object with the ability to set a context for a request.

func NewDashboardParamsWithHTTPClient

func NewDashboardParamsWithHTTPClient(client *http.Client) *DashboardParams

NewDashboardParamsWithHTTPClient creates a new DashboardParams object with the ability to set a custom HTTPClient for a request.

func NewDashboardParamsWithTimeout

func NewDashboardParamsWithTimeout(timeout time.Duration) *DashboardParams

NewDashboardParamsWithTimeout creates a new DashboardParams object with the ability to set a timeout on a request.

func (*DashboardParams) SetContext

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

SetContext adds the context to the dashboard params

func (*DashboardParams) SetDashboardID

func (o *DashboardParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the dashboard params

func (*DashboardParams) SetDefaults

func (o *DashboardParams) SetDefaults()

SetDefaults hydrates default values in the dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardParams) SetFields

func (o *DashboardParams) SetFields(fields *string)

SetFields adds the fields to the dashboard params

func (*DashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dashboard params

func (*DashboardParams) SetTimeout

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

SetTimeout adds the timeout to the dashboard params

func (*DashboardParams) WithContext

func (o *DashboardParams) WithContext(ctx context.Context) *DashboardParams

WithContext adds the context to the dashboard params

func (*DashboardParams) WithDashboardID

func (o *DashboardParams) WithDashboardID(dashboardID string) *DashboardParams

WithDashboardID adds the dashboardID to the dashboard params

func (*DashboardParams) WithDefaults

func (o *DashboardParams) WithDefaults() *DashboardParams

WithDefaults hydrates default values in the dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*DashboardParams) WithFields

func (o *DashboardParams) WithFields(fields *string) *DashboardParams

WithFields adds the fields to the dashboard params

func (*DashboardParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the dashboard params

func (*DashboardParams) WithTimeout

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

WithTimeout adds the timeout to the dashboard params

func (*DashboardParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DashboardReader

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

DashboardReader is a Reader for the Dashboard structure.

func (*DashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDashboardBadRequest

type DeleteDashboardBadRequest struct {
	Payload *models.Error
}
DeleteDashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDeleteDashboardBadRequest

func NewDeleteDashboardBadRequest() *DeleteDashboardBadRequest

NewDeleteDashboardBadRequest creates a DeleteDashboardBadRequest with default headers values

func (*DeleteDashboardBadRequest) Error

func (o *DeleteDashboardBadRequest) Error() string

func (*DeleteDashboardBadRequest) GetPayload

func (o *DeleteDashboardBadRequest) GetPayload() *models.Error

type DeleteDashboardElementBadRequest

type DeleteDashboardElementBadRequest struct {
	Payload *models.Error
}
DeleteDashboardElementBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDeleteDashboardElementBadRequest

func NewDeleteDashboardElementBadRequest() *DeleteDashboardElementBadRequest

NewDeleteDashboardElementBadRequest creates a DeleteDashboardElementBadRequest with default headers values

func (*DeleteDashboardElementBadRequest) Error

func (*DeleteDashboardElementBadRequest) GetPayload

type DeleteDashboardElementNoContent

type DeleteDashboardElementNoContent struct {
	Payload string
}
DeleteDashboardElementNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewDeleteDashboardElementNoContent

func NewDeleteDashboardElementNoContent() *DeleteDashboardElementNoContent

NewDeleteDashboardElementNoContent creates a DeleteDashboardElementNoContent with default headers values

func (*DeleteDashboardElementNoContent) Error

func (*DeleteDashboardElementNoContent) GetPayload

func (o *DeleteDashboardElementNoContent) GetPayload() string

type DeleteDashboardElementNotFound

type DeleteDashboardElementNotFound struct {
	Payload *models.Error
}
DeleteDashboardElementNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteDashboardElementNotFound

func NewDeleteDashboardElementNotFound() *DeleteDashboardElementNotFound

NewDeleteDashboardElementNotFound creates a DeleteDashboardElementNotFound with default headers values

func (*DeleteDashboardElementNotFound) Error

func (*DeleteDashboardElementNotFound) GetPayload

func (o *DeleteDashboardElementNotFound) GetPayload() *models.Error

type DeleteDashboardElementParams

type DeleteDashboardElementParams struct {

	/* DashboardElementID.

	   Id of dashboard element
	*/
	DashboardElementID string

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

DeleteDashboardElementParams contains all the parameters to send to the API endpoint

for the delete dashboard element operation.

Typically these are written to a http.Request.

func NewDeleteDashboardElementParams

func NewDeleteDashboardElementParams() *DeleteDashboardElementParams

NewDeleteDashboardElementParams creates a new DeleteDashboardElementParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteDashboardElementParamsWithContext

func NewDeleteDashboardElementParamsWithContext(ctx context.Context) *DeleteDashboardElementParams

NewDeleteDashboardElementParamsWithContext creates a new DeleteDashboardElementParams object with the ability to set a context for a request.

func NewDeleteDashboardElementParamsWithHTTPClient

func NewDeleteDashboardElementParamsWithHTTPClient(client *http.Client) *DeleteDashboardElementParams

NewDeleteDashboardElementParamsWithHTTPClient creates a new DeleteDashboardElementParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDashboardElementParamsWithTimeout

func NewDeleteDashboardElementParamsWithTimeout(timeout time.Duration) *DeleteDashboardElementParams

NewDeleteDashboardElementParamsWithTimeout creates a new DeleteDashboardElementParams object with the ability to set a timeout on a request.

func (*DeleteDashboardElementParams) SetContext

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

SetContext adds the context to the delete dashboard element params

func (*DeleteDashboardElementParams) SetDashboardElementID

func (o *DeleteDashboardElementParams) SetDashboardElementID(dashboardElementID string)

SetDashboardElementID adds the dashboardElementId to the delete dashboard element params

func (*DeleteDashboardElementParams) SetDefaults

func (o *DeleteDashboardElementParams) SetDefaults()

SetDefaults hydrates default values in the delete dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete dashboard element params

func (*DeleteDashboardElementParams) SetTimeout

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

SetTimeout adds the timeout to the delete dashboard element params

func (*DeleteDashboardElementParams) WithContext

WithContext adds the context to the delete dashboard element params

func (*DeleteDashboardElementParams) WithDashboardElementID

func (o *DeleteDashboardElementParams) WithDashboardElementID(dashboardElementID string) *DeleteDashboardElementParams

WithDashboardElementID adds the dashboardElementID to the delete dashboard element params

func (*DeleteDashboardElementParams) WithDefaults

WithDefaults hydrates default values in the delete dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardElementParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete dashboard element params

func (*DeleteDashboardElementParams) WithTimeout

WithTimeout adds the timeout to the delete dashboard element params

func (*DeleteDashboardElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteDashboardElementReader

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

DeleteDashboardElementReader is a Reader for the DeleteDashboardElement structure.

func (*DeleteDashboardElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDashboardElementTooManyRequests

type DeleteDashboardElementTooManyRequests struct {
	Payload *models.Error
}
DeleteDashboardElementTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeleteDashboardElementTooManyRequests

func NewDeleteDashboardElementTooManyRequests() *DeleteDashboardElementTooManyRequests

NewDeleteDashboardElementTooManyRequests creates a DeleteDashboardElementTooManyRequests with default headers values

func (*DeleteDashboardElementTooManyRequests) Error

func (*DeleteDashboardElementTooManyRequests) GetPayload

type DeleteDashboardFilterBadRequest

type DeleteDashboardFilterBadRequest struct {
	Payload *models.Error
}
DeleteDashboardFilterBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDeleteDashboardFilterBadRequest

func NewDeleteDashboardFilterBadRequest() *DeleteDashboardFilterBadRequest

NewDeleteDashboardFilterBadRequest creates a DeleteDashboardFilterBadRequest with default headers values

func (*DeleteDashboardFilterBadRequest) Error

func (*DeleteDashboardFilterBadRequest) GetPayload

func (o *DeleteDashboardFilterBadRequest) GetPayload() *models.Error

type DeleteDashboardFilterNoContent

type DeleteDashboardFilterNoContent struct {
	Payload string
}
DeleteDashboardFilterNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewDeleteDashboardFilterNoContent

func NewDeleteDashboardFilterNoContent() *DeleteDashboardFilterNoContent

NewDeleteDashboardFilterNoContent creates a DeleteDashboardFilterNoContent with default headers values

func (*DeleteDashboardFilterNoContent) Error

func (*DeleteDashboardFilterNoContent) GetPayload

func (o *DeleteDashboardFilterNoContent) GetPayload() string

type DeleteDashboardFilterNotFound

type DeleteDashboardFilterNotFound struct {
	Payload *models.Error
}
DeleteDashboardFilterNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteDashboardFilterNotFound

func NewDeleteDashboardFilterNotFound() *DeleteDashboardFilterNotFound

NewDeleteDashboardFilterNotFound creates a DeleteDashboardFilterNotFound with default headers values

func (*DeleteDashboardFilterNotFound) Error

func (*DeleteDashboardFilterNotFound) GetPayload

func (o *DeleteDashboardFilterNotFound) GetPayload() *models.Error

type DeleteDashboardFilterParams

type DeleteDashboardFilterParams struct {

	/* DashboardFilterID.

	   Id of dashboard filter
	*/
	DashboardFilterID string

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

DeleteDashboardFilterParams contains all the parameters to send to the API endpoint

for the delete dashboard filter operation.

Typically these are written to a http.Request.

func NewDeleteDashboardFilterParams

func NewDeleteDashboardFilterParams() *DeleteDashboardFilterParams

NewDeleteDashboardFilterParams creates a new DeleteDashboardFilterParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteDashboardFilterParamsWithContext

func NewDeleteDashboardFilterParamsWithContext(ctx context.Context) *DeleteDashboardFilterParams

NewDeleteDashboardFilterParamsWithContext creates a new DeleteDashboardFilterParams object with the ability to set a context for a request.

func NewDeleteDashboardFilterParamsWithHTTPClient

func NewDeleteDashboardFilterParamsWithHTTPClient(client *http.Client) *DeleteDashboardFilterParams

NewDeleteDashboardFilterParamsWithHTTPClient creates a new DeleteDashboardFilterParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDashboardFilterParamsWithTimeout

func NewDeleteDashboardFilterParamsWithTimeout(timeout time.Duration) *DeleteDashboardFilterParams

NewDeleteDashboardFilterParamsWithTimeout creates a new DeleteDashboardFilterParams object with the ability to set a timeout on a request.

func (*DeleteDashboardFilterParams) SetContext

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

SetContext adds the context to the delete dashboard filter params

func (*DeleteDashboardFilterParams) SetDashboardFilterID

func (o *DeleteDashboardFilterParams) SetDashboardFilterID(dashboardFilterID string)

SetDashboardFilterID adds the dashboardFilterId to the delete dashboard filter params

func (*DeleteDashboardFilterParams) SetDefaults

func (o *DeleteDashboardFilterParams) SetDefaults()

SetDefaults hydrates default values in the delete dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardFilterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete dashboard filter params

func (*DeleteDashboardFilterParams) SetTimeout

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

SetTimeout adds the timeout to the delete dashboard filter params

func (*DeleteDashboardFilterParams) WithContext

WithContext adds the context to the delete dashboard filter params

func (*DeleteDashboardFilterParams) WithDashboardFilterID

func (o *DeleteDashboardFilterParams) WithDashboardFilterID(dashboardFilterID string) *DeleteDashboardFilterParams

WithDashboardFilterID adds the dashboardFilterID to the delete dashboard filter params

func (*DeleteDashboardFilterParams) WithDefaults

WithDefaults hydrates default values in the delete dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardFilterParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete dashboard filter params

func (*DeleteDashboardFilterParams) WithTimeout

WithTimeout adds the timeout to the delete dashboard filter params

func (*DeleteDashboardFilterParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteDashboardFilterReader

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

DeleteDashboardFilterReader is a Reader for the DeleteDashboardFilter structure.

func (*DeleteDashboardFilterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDashboardFilterTooManyRequests

type DeleteDashboardFilterTooManyRequests struct {
	Payload *models.Error
}
DeleteDashboardFilterTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeleteDashboardFilterTooManyRequests

func NewDeleteDashboardFilterTooManyRequests() *DeleteDashboardFilterTooManyRequests

NewDeleteDashboardFilterTooManyRequests creates a DeleteDashboardFilterTooManyRequests with default headers values

func (*DeleteDashboardFilterTooManyRequests) Error

func (*DeleteDashboardFilterTooManyRequests) GetPayload

type DeleteDashboardLayoutBadRequest

type DeleteDashboardLayoutBadRequest struct {
	Payload *models.Error
}
DeleteDashboardLayoutBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDeleteDashboardLayoutBadRequest

func NewDeleteDashboardLayoutBadRequest() *DeleteDashboardLayoutBadRequest

NewDeleteDashboardLayoutBadRequest creates a DeleteDashboardLayoutBadRequest with default headers values

func (*DeleteDashboardLayoutBadRequest) Error

func (*DeleteDashboardLayoutBadRequest) GetPayload

func (o *DeleteDashboardLayoutBadRequest) GetPayload() *models.Error

type DeleteDashboardLayoutNoContent

type DeleteDashboardLayoutNoContent struct {
	Payload string
}
DeleteDashboardLayoutNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewDeleteDashboardLayoutNoContent

func NewDeleteDashboardLayoutNoContent() *DeleteDashboardLayoutNoContent

NewDeleteDashboardLayoutNoContent creates a DeleteDashboardLayoutNoContent with default headers values

func (*DeleteDashboardLayoutNoContent) Error

func (*DeleteDashboardLayoutNoContent) GetPayload

func (o *DeleteDashboardLayoutNoContent) GetPayload() string

type DeleteDashboardLayoutNotFound

type DeleteDashboardLayoutNotFound struct {
	Payload *models.Error
}
DeleteDashboardLayoutNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteDashboardLayoutNotFound

func NewDeleteDashboardLayoutNotFound() *DeleteDashboardLayoutNotFound

NewDeleteDashboardLayoutNotFound creates a DeleteDashboardLayoutNotFound with default headers values

func (*DeleteDashboardLayoutNotFound) Error

func (*DeleteDashboardLayoutNotFound) GetPayload

func (o *DeleteDashboardLayoutNotFound) GetPayload() *models.Error

type DeleteDashboardLayoutParams

type DeleteDashboardLayoutParams struct {

	/* DashboardLayoutID.

	   Id of dashboard layout
	*/
	DashboardLayoutID string

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

DeleteDashboardLayoutParams contains all the parameters to send to the API endpoint

for the delete dashboard layout operation.

Typically these are written to a http.Request.

func NewDeleteDashboardLayoutParams

func NewDeleteDashboardLayoutParams() *DeleteDashboardLayoutParams

NewDeleteDashboardLayoutParams creates a new DeleteDashboardLayoutParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteDashboardLayoutParamsWithContext

func NewDeleteDashboardLayoutParamsWithContext(ctx context.Context) *DeleteDashboardLayoutParams

NewDeleteDashboardLayoutParamsWithContext creates a new DeleteDashboardLayoutParams object with the ability to set a context for a request.

func NewDeleteDashboardLayoutParamsWithHTTPClient

func NewDeleteDashboardLayoutParamsWithHTTPClient(client *http.Client) *DeleteDashboardLayoutParams

NewDeleteDashboardLayoutParamsWithHTTPClient creates a new DeleteDashboardLayoutParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDashboardLayoutParamsWithTimeout

func NewDeleteDashboardLayoutParamsWithTimeout(timeout time.Duration) *DeleteDashboardLayoutParams

NewDeleteDashboardLayoutParamsWithTimeout creates a new DeleteDashboardLayoutParams object with the ability to set a timeout on a request.

func (*DeleteDashboardLayoutParams) SetContext

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

SetContext adds the context to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) SetDashboardLayoutID

func (o *DeleteDashboardLayoutParams) SetDashboardLayoutID(dashboardLayoutID string)

SetDashboardLayoutID adds the dashboardLayoutId to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) SetDefaults

func (o *DeleteDashboardLayoutParams) SetDefaults()

SetDefaults hydrates default values in the delete dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardLayoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) SetTimeout

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

SetTimeout adds the timeout to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) WithContext

WithContext adds the context to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) WithDashboardLayoutID

func (o *DeleteDashboardLayoutParams) WithDashboardLayoutID(dashboardLayoutID string) *DeleteDashboardLayoutParams

WithDashboardLayoutID adds the dashboardLayoutID to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) WithDefaults

WithDefaults hydrates default values in the delete dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardLayoutParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) WithTimeout

WithTimeout adds the timeout to the delete dashboard layout params

func (*DeleteDashboardLayoutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteDashboardLayoutReader

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

DeleteDashboardLayoutReader is a Reader for the DeleteDashboardLayout structure.

func (*DeleteDashboardLayoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDashboardLayoutTooManyRequests

type DeleteDashboardLayoutTooManyRequests struct {
	Payload *models.Error
}
DeleteDashboardLayoutTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeleteDashboardLayoutTooManyRequests

func NewDeleteDashboardLayoutTooManyRequests() *DeleteDashboardLayoutTooManyRequests

NewDeleteDashboardLayoutTooManyRequests creates a DeleteDashboardLayoutTooManyRequests with default headers values

func (*DeleteDashboardLayoutTooManyRequests) Error

func (*DeleteDashboardLayoutTooManyRequests) GetPayload

type DeleteDashboardLayoutUnprocessableEntity

type DeleteDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}
DeleteDashboardLayoutUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewDeleteDashboardLayoutUnprocessableEntity

func NewDeleteDashboardLayoutUnprocessableEntity() *DeleteDashboardLayoutUnprocessableEntity

NewDeleteDashboardLayoutUnprocessableEntity creates a DeleteDashboardLayoutUnprocessableEntity with default headers values

func (*DeleteDashboardLayoutUnprocessableEntity) Error

func (*DeleteDashboardLayoutUnprocessableEntity) GetPayload

type DeleteDashboardMethodNotAllowed

type DeleteDashboardMethodNotAllowed struct {
	Payload *models.Error
}
DeleteDashboardMethodNotAllowed describes a response with status code 405, with default header values.

Resource Can't Be Modified

func NewDeleteDashboardMethodNotAllowed

func NewDeleteDashboardMethodNotAllowed() *DeleteDashboardMethodNotAllowed

NewDeleteDashboardMethodNotAllowed creates a DeleteDashboardMethodNotAllowed with default headers values

func (*DeleteDashboardMethodNotAllowed) Error

func (*DeleteDashboardMethodNotAllowed) GetPayload

func (o *DeleteDashboardMethodNotAllowed) GetPayload() *models.Error

type DeleteDashboardNoContent

type DeleteDashboardNoContent struct {
	Payload string
}
DeleteDashboardNoContent describes a response with status code 204, with default header values.

Successfully deleted.

func NewDeleteDashboardNoContent

func NewDeleteDashboardNoContent() *DeleteDashboardNoContent

NewDeleteDashboardNoContent creates a DeleteDashboardNoContent with default headers values

func (*DeleteDashboardNoContent) Error

func (o *DeleteDashboardNoContent) Error() string

func (*DeleteDashboardNoContent) GetPayload

func (o *DeleteDashboardNoContent) GetPayload() string

type DeleteDashboardNotFound

type DeleteDashboardNotFound struct {
	Payload *models.Error
}
DeleteDashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteDashboardNotFound

func NewDeleteDashboardNotFound() *DeleteDashboardNotFound

NewDeleteDashboardNotFound creates a DeleteDashboardNotFound with default headers values

func (*DeleteDashboardNotFound) Error

func (o *DeleteDashboardNotFound) Error() string

func (*DeleteDashboardNotFound) GetPayload

func (o *DeleteDashboardNotFound) GetPayload() *models.Error

type DeleteDashboardParams

type DeleteDashboardParams struct {

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

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

DeleteDashboardParams contains all the parameters to send to the API endpoint

for the delete dashboard operation.

Typically these are written to a http.Request.

func NewDeleteDashboardParams

func NewDeleteDashboardParams() *DeleteDashboardParams

NewDeleteDashboardParams creates a new DeleteDashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteDashboardParamsWithContext

func NewDeleteDashboardParamsWithContext(ctx context.Context) *DeleteDashboardParams

NewDeleteDashboardParamsWithContext creates a new DeleteDashboardParams object with the ability to set a context for a request.

func NewDeleteDashboardParamsWithHTTPClient

func NewDeleteDashboardParamsWithHTTPClient(client *http.Client) *DeleteDashboardParams

NewDeleteDashboardParamsWithHTTPClient creates a new DeleteDashboardParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDashboardParamsWithTimeout

func NewDeleteDashboardParamsWithTimeout(timeout time.Duration) *DeleteDashboardParams

NewDeleteDashboardParamsWithTimeout creates a new DeleteDashboardParams object with the ability to set a timeout on a request.

func (*DeleteDashboardParams) SetContext

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

SetContext adds the context to the delete dashboard params

func (*DeleteDashboardParams) SetDashboardID

func (o *DeleteDashboardParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the delete dashboard params

func (*DeleteDashboardParams) SetDefaults

func (o *DeleteDashboardParams) SetDefaults()

SetDefaults hydrates default values in the delete dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete dashboard params

func (*DeleteDashboardParams) SetTimeout

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

SetTimeout adds the timeout to the delete dashboard params

func (*DeleteDashboardParams) WithContext

WithContext adds the context to the delete dashboard params

func (*DeleteDashboardParams) WithDashboardID

func (o *DeleteDashboardParams) WithDashboardID(dashboardID string) *DeleteDashboardParams

WithDashboardID adds the dashboardID to the delete dashboard params

func (*DeleteDashboardParams) WithDefaults

func (o *DeleteDashboardParams) WithDefaults() *DeleteDashboardParams

WithDefaults hydrates default values in the delete dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteDashboardParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete dashboard params

func (*DeleteDashboardParams) WithTimeout

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

WithTimeout adds the timeout to the delete dashboard params

func (*DeleteDashboardParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteDashboardReader

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

DeleteDashboardReader is a Reader for the DeleteDashboard structure.

func (*DeleteDashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDashboardTooManyRequests

type DeleteDashboardTooManyRequests struct {
	Payload *models.Error
}
DeleteDashboardTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeleteDashboardTooManyRequests

func NewDeleteDashboardTooManyRequests() *DeleteDashboardTooManyRequests

NewDeleteDashboardTooManyRequests creates a DeleteDashboardTooManyRequests with default headers values

func (*DeleteDashboardTooManyRequests) Error

func (*DeleteDashboardTooManyRequests) GetPayload

func (o *DeleteDashboardTooManyRequests) GetPayload() *models.Error

type ImportLookmlDashboardBadRequest

type ImportLookmlDashboardBadRequest struct {
	Payload *models.Error
}
ImportLookmlDashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewImportLookmlDashboardBadRequest

func NewImportLookmlDashboardBadRequest() *ImportLookmlDashboardBadRequest

NewImportLookmlDashboardBadRequest creates a ImportLookmlDashboardBadRequest with default headers values

func (*ImportLookmlDashboardBadRequest) Error

func (*ImportLookmlDashboardBadRequest) GetPayload

func (o *ImportLookmlDashboardBadRequest) GetPayload() *models.Error

type ImportLookmlDashboardConflict

type ImportLookmlDashboardConflict struct {
	Payload *models.Error
}
ImportLookmlDashboardConflict describes a response with status code 409, with default header values.

Resource Already Exists

func NewImportLookmlDashboardConflict

func NewImportLookmlDashboardConflict() *ImportLookmlDashboardConflict

NewImportLookmlDashboardConflict creates a ImportLookmlDashboardConflict with default headers values

func (*ImportLookmlDashboardConflict) Error

func (*ImportLookmlDashboardConflict) GetPayload

func (o *ImportLookmlDashboardConflict) GetPayload() *models.Error

type ImportLookmlDashboardCreated

type ImportLookmlDashboardCreated struct {
	Payload *models.Dashboard
}
ImportLookmlDashboardCreated describes a response with status code 201, with default header values.

dashboard

func NewImportLookmlDashboardCreated

func NewImportLookmlDashboardCreated() *ImportLookmlDashboardCreated

NewImportLookmlDashboardCreated creates a ImportLookmlDashboardCreated with default headers values

func (*ImportLookmlDashboardCreated) Error

func (*ImportLookmlDashboardCreated) GetPayload

type ImportLookmlDashboardNotFound

type ImportLookmlDashboardNotFound struct {
	Payload *models.Error
}
ImportLookmlDashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewImportLookmlDashboardNotFound

func NewImportLookmlDashboardNotFound() *ImportLookmlDashboardNotFound

NewImportLookmlDashboardNotFound creates a ImportLookmlDashboardNotFound with default headers values

func (*ImportLookmlDashboardNotFound) Error

func (*ImportLookmlDashboardNotFound) GetPayload

func (o *ImportLookmlDashboardNotFound) GetPayload() *models.Error

type ImportLookmlDashboardOK

type ImportLookmlDashboardOK struct {
	Payload *models.Dashboard
}
ImportLookmlDashboardOK describes a response with status code 200, with default header values.

Dashboard

func NewImportLookmlDashboardOK

func NewImportLookmlDashboardOK() *ImportLookmlDashboardOK

NewImportLookmlDashboardOK creates a ImportLookmlDashboardOK with default headers values

func (*ImportLookmlDashboardOK) Error

func (o *ImportLookmlDashboardOK) Error() string

func (*ImportLookmlDashboardOK) GetPayload

func (o *ImportLookmlDashboardOK) GetPayload() *models.Dashboard

type ImportLookmlDashboardParams

type ImportLookmlDashboardParams struct {

	/* Body.

	   Dashboard
	*/
	Body *models.Dashboard

	/* LookmlDashboardID.

	   Id of LookML dashboard
	*/
	LookmlDashboardID string

	/* RawLocale.

	   If true, and this dashboard is localized, export it with the raw keys, not localized.
	*/
	RawLocale *bool

	/* SpaceID.

	   Id of space to import the dashboard to
	*/
	SpaceID string

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

ImportLookmlDashboardParams contains all the parameters to send to the API endpoint

for the import lookml dashboard operation.

Typically these are written to a http.Request.

func NewImportLookmlDashboardParams

func NewImportLookmlDashboardParams() *ImportLookmlDashboardParams

NewImportLookmlDashboardParams creates a new ImportLookmlDashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewImportLookmlDashboardParamsWithContext

func NewImportLookmlDashboardParamsWithContext(ctx context.Context) *ImportLookmlDashboardParams

NewImportLookmlDashboardParamsWithContext creates a new ImportLookmlDashboardParams object with the ability to set a context for a request.

func NewImportLookmlDashboardParamsWithHTTPClient

func NewImportLookmlDashboardParamsWithHTTPClient(client *http.Client) *ImportLookmlDashboardParams

NewImportLookmlDashboardParamsWithHTTPClient creates a new ImportLookmlDashboardParams object with the ability to set a custom HTTPClient for a request.

func NewImportLookmlDashboardParamsWithTimeout

func NewImportLookmlDashboardParamsWithTimeout(timeout time.Duration) *ImportLookmlDashboardParams

NewImportLookmlDashboardParamsWithTimeout creates a new ImportLookmlDashboardParams object with the ability to set a timeout on a request.

func (*ImportLookmlDashboardParams) SetBody

func (o *ImportLookmlDashboardParams) SetBody(body *models.Dashboard)

SetBody adds the body to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetContext

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

SetContext adds the context to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetDefaults

func (o *ImportLookmlDashboardParams) SetDefaults()

SetDefaults hydrates default values in the import lookml dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*ImportLookmlDashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetLookmlDashboardID

func (o *ImportLookmlDashboardParams) SetLookmlDashboardID(lookmlDashboardID string)

SetLookmlDashboardID adds the lookmlDashboardId to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetRawLocale

func (o *ImportLookmlDashboardParams) SetRawLocale(rawLocale *bool)

SetRawLocale adds the rawLocale to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetSpaceID

func (o *ImportLookmlDashboardParams) SetSpaceID(spaceID string)

SetSpaceID adds the spaceId to the import lookml dashboard params

func (*ImportLookmlDashboardParams) SetTimeout

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

SetTimeout adds the timeout to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithBody

WithBody adds the body to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithContext

WithContext adds the context to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithDefaults

WithDefaults hydrates default values in the import lookml dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*ImportLookmlDashboardParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithLookmlDashboardID

func (o *ImportLookmlDashboardParams) WithLookmlDashboardID(lookmlDashboardID string) *ImportLookmlDashboardParams

WithLookmlDashboardID adds the lookmlDashboardID to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithRawLocale

func (o *ImportLookmlDashboardParams) WithRawLocale(rawLocale *bool) *ImportLookmlDashboardParams

WithRawLocale adds the rawLocale to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithSpaceID

WithSpaceID adds the spaceID to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WithTimeout

WithTimeout adds the timeout to the import lookml dashboard params

func (*ImportLookmlDashboardParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ImportLookmlDashboardReader

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

ImportLookmlDashboardReader is a Reader for the ImportLookmlDashboard structure.

func (*ImportLookmlDashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ImportLookmlDashboardTooManyRequests

type ImportLookmlDashboardTooManyRequests struct {
	Payload *models.Error
}
ImportLookmlDashboardTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewImportLookmlDashboardTooManyRequests

func NewImportLookmlDashboardTooManyRequests() *ImportLookmlDashboardTooManyRequests

NewImportLookmlDashboardTooManyRequests creates a ImportLookmlDashboardTooManyRequests with default headers values

func (*ImportLookmlDashboardTooManyRequests) Error

func (*ImportLookmlDashboardTooManyRequests) GetPayload

type ImportLookmlDashboardUnprocessableEntity

type ImportLookmlDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}
ImportLookmlDashboardUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewImportLookmlDashboardUnprocessableEntity

func NewImportLookmlDashboardUnprocessableEntity() *ImportLookmlDashboardUnprocessableEntity

NewImportLookmlDashboardUnprocessableEntity creates a ImportLookmlDashboardUnprocessableEntity with default headers values

func (*ImportLookmlDashboardUnprocessableEntity) Error

func (*ImportLookmlDashboardUnprocessableEntity) GetPayload

type SearchDashboardElementsBadRequest

type SearchDashboardElementsBadRequest struct {
	Payload *models.Error
}
SearchDashboardElementsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewSearchDashboardElementsBadRequest

func NewSearchDashboardElementsBadRequest() *SearchDashboardElementsBadRequest

NewSearchDashboardElementsBadRequest creates a SearchDashboardElementsBadRequest with default headers values

func (*SearchDashboardElementsBadRequest) Error

func (*SearchDashboardElementsBadRequest) GetPayload

type SearchDashboardElementsNotFound

type SearchDashboardElementsNotFound struct {
	Payload *models.Error
}
SearchDashboardElementsNotFound describes a response with status code 404, with default header values.

Not Found

func NewSearchDashboardElementsNotFound

func NewSearchDashboardElementsNotFound() *SearchDashboardElementsNotFound

NewSearchDashboardElementsNotFound creates a SearchDashboardElementsNotFound with default headers values

func (*SearchDashboardElementsNotFound) Error

func (*SearchDashboardElementsNotFound) GetPayload

func (o *SearchDashboardElementsNotFound) GetPayload() *models.Error

type SearchDashboardElementsOK

type SearchDashboardElementsOK struct {
	Payload []*models.DashboardElement
}
SearchDashboardElementsOK describes a response with status code 200, with default header values.

Dashboard elements

func NewSearchDashboardElementsOK

func NewSearchDashboardElementsOK() *SearchDashboardElementsOK

NewSearchDashboardElementsOK creates a SearchDashboardElementsOK with default headers values

func (*SearchDashboardElementsOK) Error

func (o *SearchDashboardElementsOK) Error() string

func (*SearchDashboardElementsOK) GetPayload

type SearchDashboardElementsParams

type SearchDashboardElementsParams struct {

	/* DashboardID.

	   Select elements that refer to a given dashboard id

	   Format: int64
	*/
	DashboardID *int64

	/* Deleted.

	   Select soft-deleted dashboard elements
	*/
	Deleted *bool

	/* Fields.

	   Requested fields.
	*/
	Fields *string

	/* FilterOr.

	   Combine given search criteria in a boolean OR expression
	*/
	FilterOr *bool

	/* LookID.

	   Select elements that refer to a given look id

	   Format: int64
	*/
	LookID *int64

	/* Sorts.

	   Fields to sort by. Sortable fields: [:look_id, :dashboard_id, :deleted, :title]
	*/
	Sorts *string

	/* Title.

	   Match the title of element
	*/
	Title *string

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

SearchDashboardElementsParams contains all the parameters to send to the API endpoint

for the search dashboard elements operation.

Typically these are written to a http.Request.

func NewSearchDashboardElementsParams

func NewSearchDashboardElementsParams() *SearchDashboardElementsParams

NewSearchDashboardElementsParams creates a new SearchDashboardElementsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSearchDashboardElementsParamsWithContext

func NewSearchDashboardElementsParamsWithContext(ctx context.Context) *SearchDashboardElementsParams

NewSearchDashboardElementsParamsWithContext creates a new SearchDashboardElementsParams object with the ability to set a context for a request.

func NewSearchDashboardElementsParamsWithHTTPClient

func NewSearchDashboardElementsParamsWithHTTPClient(client *http.Client) *SearchDashboardElementsParams

NewSearchDashboardElementsParamsWithHTTPClient creates a new SearchDashboardElementsParams object with the ability to set a custom HTTPClient for a request.

func NewSearchDashboardElementsParamsWithTimeout

func NewSearchDashboardElementsParamsWithTimeout(timeout time.Duration) *SearchDashboardElementsParams

NewSearchDashboardElementsParamsWithTimeout creates a new SearchDashboardElementsParams object with the ability to set a timeout on a request.

func (*SearchDashboardElementsParams) SetContext

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

SetContext adds the context to the search dashboard elements params

func (*SearchDashboardElementsParams) SetDashboardID

func (o *SearchDashboardElementsParams) SetDashboardID(dashboardID *int64)

SetDashboardID adds the dashboardId to the search dashboard elements params

func (*SearchDashboardElementsParams) SetDefaults

func (o *SearchDashboardElementsParams) SetDefaults()

SetDefaults hydrates default values in the search dashboard elements params (not the query body).

All values with no default are reset to their zero value.

func (*SearchDashboardElementsParams) SetDeleted

func (o *SearchDashboardElementsParams) SetDeleted(deleted *bool)

SetDeleted adds the deleted to the search dashboard elements params

func (*SearchDashboardElementsParams) SetFields

func (o *SearchDashboardElementsParams) SetFields(fields *string)

SetFields adds the fields to the search dashboard elements params

func (*SearchDashboardElementsParams) SetFilterOr

func (o *SearchDashboardElementsParams) SetFilterOr(filterOr *bool)

SetFilterOr adds the filterOr to the search dashboard elements params

func (*SearchDashboardElementsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search dashboard elements params

func (*SearchDashboardElementsParams) SetLookID

func (o *SearchDashboardElementsParams) SetLookID(lookID *int64)

SetLookID adds the lookId to the search dashboard elements params

func (*SearchDashboardElementsParams) SetSorts

func (o *SearchDashboardElementsParams) SetSorts(sorts *string)

SetSorts adds the sorts to the search dashboard elements params

func (*SearchDashboardElementsParams) SetTimeout

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

SetTimeout adds the timeout to the search dashboard elements params

func (*SearchDashboardElementsParams) SetTitle

func (o *SearchDashboardElementsParams) SetTitle(title *string)

SetTitle adds the title to the search dashboard elements params

func (*SearchDashboardElementsParams) WithContext

WithContext adds the context to the search dashboard elements params

func (*SearchDashboardElementsParams) WithDashboardID

func (o *SearchDashboardElementsParams) WithDashboardID(dashboardID *int64) *SearchDashboardElementsParams

WithDashboardID adds the dashboardID to the search dashboard elements params

func (*SearchDashboardElementsParams) WithDefaults

WithDefaults hydrates default values in the search dashboard elements params (not the query body).

All values with no default are reset to their zero value.

func (*SearchDashboardElementsParams) WithDeleted

WithDeleted adds the deleted to the search dashboard elements params

func (*SearchDashboardElementsParams) WithFields

WithFields adds the fields to the search dashboard elements params

func (*SearchDashboardElementsParams) WithFilterOr

WithFilterOr adds the filterOr to the search dashboard elements params

func (*SearchDashboardElementsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the search dashboard elements params

func (*SearchDashboardElementsParams) WithLookID

WithLookID adds the lookID to the search dashboard elements params

func (*SearchDashboardElementsParams) WithSorts

WithSorts adds the sorts to the search dashboard elements params

func (*SearchDashboardElementsParams) WithTimeout

WithTimeout adds the timeout to the search dashboard elements params

func (*SearchDashboardElementsParams) WithTitle

WithTitle adds the title to the search dashboard elements params

func (*SearchDashboardElementsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SearchDashboardElementsReader

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

SearchDashboardElementsReader is a Reader for the SearchDashboardElements structure.

func (*SearchDashboardElementsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SearchDashboardsBadRequest

type SearchDashboardsBadRequest struct {
	Payload *models.Error
}
SearchDashboardsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewSearchDashboardsBadRequest

func NewSearchDashboardsBadRequest() *SearchDashboardsBadRequest

NewSearchDashboardsBadRequest creates a SearchDashboardsBadRequest with default headers values

func (*SearchDashboardsBadRequest) Error

func (*SearchDashboardsBadRequest) GetPayload

func (o *SearchDashboardsBadRequest) GetPayload() *models.Error

type SearchDashboardsNotFound

type SearchDashboardsNotFound struct {
	Payload *models.Error
}
SearchDashboardsNotFound describes a response with status code 404, with default header values.

Not Found

func NewSearchDashboardsNotFound

func NewSearchDashboardsNotFound() *SearchDashboardsNotFound

NewSearchDashboardsNotFound creates a SearchDashboardsNotFound with default headers values

func (*SearchDashboardsNotFound) Error

func (o *SearchDashboardsNotFound) Error() string

func (*SearchDashboardsNotFound) GetPayload

func (o *SearchDashboardsNotFound) GetPayload() *models.Error

type SearchDashboardsOK

type SearchDashboardsOK struct {
	Payload []*models.Dashboard
}
SearchDashboardsOK describes a response with status code 200, with default header values.

dashboards

func NewSearchDashboardsOK

func NewSearchDashboardsOK() *SearchDashboardsOK

NewSearchDashboardsOK creates a SearchDashboardsOK with default headers values

func (*SearchDashboardsOK) Error

func (o *SearchDashboardsOK) Error() string

func (*SearchDashboardsOK) GetPayload

func (o *SearchDashboardsOK) GetPayload() []*models.Dashboard

type SearchDashboardsParams

type SearchDashboardsParams struct {

	/* ContentFavoriteID.

	   Filter on a content favorite id.

	   Format: int64
	*/
	ContentFavoriteID *int64

	/* ContentMetadataID.

	   Filter on a content favorite id.

	   Format: int64
	*/
	ContentMetadataID *int64

	/* Curate.

	   Exclude items that exist only in personal spaces other than the users
	*/
	Curate *bool

	/* Deleted.

	   Filter on dashboards deleted status.
	*/
	Deleted *string

	/* Description.

	   Match Dashboard description.
	*/
	Description *string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

	/* FilterOr.

	   Combine given search criteria in a boolean OR expression
	*/
	FilterOr *bool

	/* FolderID.

	   Filter on a particular space.
	*/
	FolderID *string

	/* ID.

	   Match dashboard id.

	   Format: int64
	*/
	ID *int64

	/* Limit.

	   Number of results to return. (used with offset and takes priority over page and per_page)

	   Format: int64
	*/
	Limit *int64

	/* Offset.

	   Number of results to skip before returning any. (used with limit and takes priority over page and per_page)

	   Format: int64
	*/
	Offset *int64

	/* Page.

	   Requested page.

	   Format: int64
	*/
	Page *int64

	/* PerPage.

	   Results per page.

	   Format: int64
	*/
	PerPage *int64

	/* Slug.

	   Match dashboard slug.
	*/
	Slug *string

	/* Sorts.

	   One or more fields to sort by. Sortable fields: [:title, :user_id, :id, :created_at, :space_id, :folder_id, :description, :view_count, :favorite_count, :slug, :content_favorite_id, :content_metadata_id, :deleted, :deleted_at, :last_viewed_at, :last_accessed_at]
	*/
	Sorts *string

	/* SpaceID.

	   Filter on a particular space.
	*/
	SpaceID *string

	/* Title.

	   Match Dashboard title.
	*/
	Title *string

	/* UserID.

	   Filter on dashboards created by a particular user.
	*/
	UserID *string

	/* ViewCount.

	   Filter on a particular value of view_count
	*/
	ViewCount *string

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

SearchDashboardsParams contains all the parameters to send to the API endpoint

for the search dashboards operation.

Typically these are written to a http.Request.

func NewSearchDashboardsParams

func NewSearchDashboardsParams() *SearchDashboardsParams

NewSearchDashboardsParams creates a new SearchDashboardsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSearchDashboardsParamsWithContext

func NewSearchDashboardsParamsWithContext(ctx context.Context) *SearchDashboardsParams

NewSearchDashboardsParamsWithContext creates a new SearchDashboardsParams object with the ability to set a context for a request.

func NewSearchDashboardsParamsWithHTTPClient

func NewSearchDashboardsParamsWithHTTPClient(client *http.Client) *SearchDashboardsParams

NewSearchDashboardsParamsWithHTTPClient creates a new SearchDashboardsParams object with the ability to set a custom HTTPClient for a request.

func NewSearchDashboardsParamsWithTimeout

func NewSearchDashboardsParamsWithTimeout(timeout time.Duration) *SearchDashboardsParams

NewSearchDashboardsParamsWithTimeout creates a new SearchDashboardsParams object with the ability to set a timeout on a request.

func (*SearchDashboardsParams) SetContentFavoriteID

func (o *SearchDashboardsParams) SetContentFavoriteID(contentFavoriteID *int64)

SetContentFavoriteID adds the contentFavoriteId to the search dashboards params

func (*SearchDashboardsParams) SetContentMetadataID

func (o *SearchDashboardsParams) SetContentMetadataID(contentMetadataID *int64)

SetContentMetadataID adds the contentMetadataId to the search dashboards params

func (*SearchDashboardsParams) SetContext

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

SetContext adds the context to the search dashboards params

func (*SearchDashboardsParams) SetCurate

func (o *SearchDashboardsParams) SetCurate(curate *bool)

SetCurate adds the curate to the search dashboards params

func (*SearchDashboardsParams) SetDefaults

func (o *SearchDashboardsParams) SetDefaults()

SetDefaults hydrates default values in the search dashboards params (not the query body).

All values with no default are reset to their zero value.

func (*SearchDashboardsParams) SetDeleted

func (o *SearchDashboardsParams) SetDeleted(deleted *string)

SetDeleted adds the deleted to the search dashboards params

func (*SearchDashboardsParams) SetDescription

func (o *SearchDashboardsParams) SetDescription(description *string)

SetDescription adds the description to the search dashboards params

func (*SearchDashboardsParams) SetFields

func (o *SearchDashboardsParams) SetFields(fields *string)

SetFields adds the fields to the search dashboards params

func (*SearchDashboardsParams) SetFilterOr

func (o *SearchDashboardsParams) SetFilterOr(filterOr *bool)

SetFilterOr adds the filterOr to the search dashboards params

func (*SearchDashboardsParams) SetFolderID

func (o *SearchDashboardsParams) SetFolderID(folderID *string)

SetFolderID adds the folderId to the search dashboards params

func (*SearchDashboardsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search dashboards params

func (*SearchDashboardsParams) SetID

func (o *SearchDashboardsParams) SetID(id *int64)

SetID adds the id to the search dashboards params

func (*SearchDashboardsParams) SetLimit

func (o *SearchDashboardsParams) SetLimit(limit *int64)

SetLimit adds the limit to the search dashboards params

func (*SearchDashboardsParams) SetOffset

func (o *SearchDashboardsParams) SetOffset(offset *int64)

SetOffset adds the offset to the search dashboards params

func (*SearchDashboardsParams) SetPage

func (o *SearchDashboardsParams) SetPage(page *int64)

SetPage adds the page to the search dashboards params

func (*SearchDashboardsParams) SetPerPage

func (o *SearchDashboardsParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the search dashboards params

func (*SearchDashboardsParams) SetSlug

func (o *SearchDashboardsParams) SetSlug(slug *string)

SetSlug adds the slug to the search dashboards params

func (*SearchDashboardsParams) SetSorts

func (o *SearchDashboardsParams) SetSorts(sorts *string)

SetSorts adds the sorts to the search dashboards params

func (*SearchDashboardsParams) SetSpaceID

func (o *SearchDashboardsParams) SetSpaceID(spaceID *string)

SetSpaceID adds the spaceId to the search dashboards params

func (*SearchDashboardsParams) SetTimeout

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

SetTimeout adds the timeout to the search dashboards params

func (*SearchDashboardsParams) SetTitle

func (o *SearchDashboardsParams) SetTitle(title *string)

SetTitle adds the title to the search dashboards params

func (*SearchDashboardsParams) SetUserID

func (o *SearchDashboardsParams) SetUserID(userID *string)

SetUserID adds the userId to the search dashboards params

func (*SearchDashboardsParams) SetViewCount

func (o *SearchDashboardsParams) SetViewCount(viewCount *string)

SetViewCount adds the viewCount to the search dashboards params

func (*SearchDashboardsParams) WithContentFavoriteID

func (o *SearchDashboardsParams) WithContentFavoriteID(contentFavoriteID *int64) *SearchDashboardsParams

WithContentFavoriteID adds the contentFavoriteID to the search dashboards params

func (*SearchDashboardsParams) WithContentMetadataID

func (o *SearchDashboardsParams) WithContentMetadataID(contentMetadataID *int64) *SearchDashboardsParams

WithContentMetadataID adds the contentMetadataID to the search dashboards params

func (*SearchDashboardsParams) WithContext

WithContext adds the context to the search dashboards params

func (*SearchDashboardsParams) WithCurate

func (o *SearchDashboardsParams) WithCurate(curate *bool) *SearchDashboardsParams

WithCurate adds the curate to the search dashboards params

func (*SearchDashboardsParams) WithDefaults

WithDefaults hydrates default values in the search dashboards params (not the query body).

All values with no default are reset to their zero value.

func (*SearchDashboardsParams) WithDeleted

func (o *SearchDashboardsParams) WithDeleted(deleted *string) *SearchDashboardsParams

WithDeleted adds the deleted to the search dashboards params

func (*SearchDashboardsParams) WithDescription

func (o *SearchDashboardsParams) WithDescription(description *string) *SearchDashboardsParams

WithDescription adds the description to the search dashboards params

func (*SearchDashboardsParams) WithFields

func (o *SearchDashboardsParams) WithFields(fields *string) *SearchDashboardsParams

WithFields adds the fields to the search dashboards params

func (*SearchDashboardsParams) WithFilterOr

func (o *SearchDashboardsParams) WithFilterOr(filterOr *bool) *SearchDashboardsParams

WithFilterOr adds the filterOr to the search dashboards params

func (*SearchDashboardsParams) WithFolderID

func (o *SearchDashboardsParams) WithFolderID(folderID *string) *SearchDashboardsParams

WithFolderID adds the folderID to the search dashboards params

func (*SearchDashboardsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search dashboards params

func (*SearchDashboardsParams) WithID

WithID adds the id to the search dashboards params

func (*SearchDashboardsParams) WithLimit

func (o *SearchDashboardsParams) WithLimit(limit *int64) *SearchDashboardsParams

WithLimit adds the limit to the search dashboards params

func (*SearchDashboardsParams) WithOffset

func (o *SearchDashboardsParams) WithOffset(offset *int64) *SearchDashboardsParams

WithOffset adds the offset to the search dashboards params

func (*SearchDashboardsParams) WithPage

WithPage adds the page to the search dashboards params

func (*SearchDashboardsParams) WithPerPage

func (o *SearchDashboardsParams) WithPerPage(perPage *int64) *SearchDashboardsParams

WithPerPage adds the perPage to the search dashboards params

func (*SearchDashboardsParams) WithSlug

WithSlug adds the slug to the search dashboards params

func (*SearchDashboardsParams) WithSorts

WithSorts adds the sorts to the search dashboards params

func (*SearchDashboardsParams) WithSpaceID

func (o *SearchDashboardsParams) WithSpaceID(spaceID *string) *SearchDashboardsParams

WithSpaceID adds the spaceID to the search dashboards params

func (*SearchDashboardsParams) WithTimeout

WithTimeout adds the timeout to the search dashboards params

func (*SearchDashboardsParams) WithTitle

WithTitle adds the title to the search dashboards params

func (*SearchDashboardsParams) WithUserID

func (o *SearchDashboardsParams) WithUserID(userID *string) *SearchDashboardsParams

WithUserID adds the userID to the search dashboards params

func (*SearchDashboardsParams) WithViewCount

func (o *SearchDashboardsParams) WithViewCount(viewCount *string) *SearchDashboardsParams

WithViewCount adds the viewCount to the search dashboards params

func (*SearchDashboardsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SearchDashboardsReader

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

SearchDashboardsReader is a Reader for the SearchDashboards structure.

func (*SearchDashboardsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SyncLookmlDashboardBadRequest

type SyncLookmlDashboardBadRequest struct {
	Payload *models.Error
}
SyncLookmlDashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewSyncLookmlDashboardBadRequest

func NewSyncLookmlDashboardBadRequest() *SyncLookmlDashboardBadRequest

NewSyncLookmlDashboardBadRequest creates a SyncLookmlDashboardBadRequest with default headers values

func (*SyncLookmlDashboardBadRequest) Error

func (*SyncLookmlDashboardBadRequest) GetPayload

func (o *SyncLookmlDashboardBadRequest) GetPayload() *models.Error

type SyncLookmlDashboardNotFound

type SyncLookmlDashboardNotFound struct {
	Payload *models.Error
}
SyncLookmlDashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewSyncLookmlDashboardNotFound

func NewSyncLookmlDashboardNotFound() *SyncLookmlDashboardNotFound

NewSyncLookmlDashboardNotFound creates a SyncLookmlDashboardNotFound with default headers values

func (*SyncLookmlDashboardNotFound) Error

func (*SyncLookmlDashboardNotFound) GetPayload

func (o *SyncLookmlDashboardNotFound) GetPayload() *models.Error

type SyncLookmlDashboardOK

type SyncLookmlDashboardOK struct {
	Payload []int64
}
SyncLookmlDashboardOK describes a response with status code 200, with default header values.

Ids of all the dashboards that were updated by this operation

func NewSyncLookmlDashboardOK

func NewSyncLookmlDashboardOK() *SyncLookmlDashboardOK

NewSyncLookmlDashboardOK creates a SyncLookmlDashboardOK with default headers values

func (*SyncLookmlDashboardOK) Error

func (o *SyncLookmlDashboardOK) Error() string

func (*SyncLookmlDashboardOK) GetPayload

func (o *SyncLookmlDashboardOK) GetPayload() []int64

type SyncLookmlDashboardParams

type SyncLookmlDashboardParams struct {

	/* Body.

	   Dashboard
	*/
	Body *models.Dashboard

	/* LookmlDashboardID.

	   Id of LookML dashboard, in the form 'model::dashboardname'
	*/
	LookmlDashboardID string

	/* RawLocale.

	   If true, and this dashboard is localized, export it with the raw keys, not localized.
	*/
	RawLocale *bool

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

SyncLookmlDashboardParams contains all the parameters to send to the API endpoint

for the sync lookml dashboard operation.

Typically these are written to a http.Request.

func NewSyncLookmlDashboardParams

func NewSyncLookmlDashboardParams() *SyncLookmlDashboardParams

NewSyncLookmlDashboardParams creates a new SyncLookmlDashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSyncLookmlDashboardParamsWithContext

func NewSyncLookmlDashboardParamsWithContext(ctx context.Context) *SyncLookmlDashboardParams

NewSyncLookmlDashboardParamsWithContext creates a new SyncLookmlDashboardParams object with the ability to set a context for a request.

func NewSyncLookmlDashboardParamsWithHTTPClient

func NewSyncLookmlDashboardParamsWithHTTPClient(client *http.Client) *SyncLookmlDashboardParams

NewSyncLookmlDashboardParamsWithHTTPClient creates a new SyncLookmlDashboardParams object with the ability to set a custom HTTPClient for a request.

func NewSyncLookmlDashboardParamsWithTimeout

func NewSyncLookmlDashboardParamsWithTimeout(timeout time.Duration) *SyncLookmlDashboardParams

NewSyncLookmlDashboardParamsWithTimeout creates a new SyncLookmlDashboardParams object with the ability to set a timeout on a request.

func (*SyncLookmlDashboardParams) SetBody

func (o *SyncLookmlDashboardParams) SetBody(body *models.Dashboard)

SetBody adds the body to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) SetContext

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

SetContext adds the context to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) SetDefaults

func (o *SyncLookmlDashboardParams) SetDefaults()

SetDefaults hydrates default values in the sync lookml dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*SyncLookmlDashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) SetLookmlDashboardID

func (o *SyncLookmlDashboardParams) SetLookmlDashboardID(lookmlDashboardID string)

SetLookmlDashboardID adds the lookmlDashboardId to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) SetRawLocale

func (o *SyncLookmlDashboardParams) SetRawLocale(rawLocale *bool)

SetRawLocale adds the rawLocale to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) SetTimeout

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

SetTimeout adds the timeout to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithBody

WithBody adds the body to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithContext

WithContext adds the context to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithDefaults

WithDefaults hydrates default values in the sync lookml dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*SyncLookmlDashboardParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithLookmlDashboardID

func (o *SyncLookmlDashboardParams) WithLookmlDashboardID(lookmlDashboardID string) *SyncLookmlDashboardParams

WithLookmlDashboardID adds the lookmlDashboardID to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithRawLocale

func (o *SyncLookmlDashboardParams) WithRawLocale(rawLocale *bool) *SyncLookmlDashboardParams

WithRawLocale adds the rawLocale to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WithTimeout

WithTimeout adds the timeout to the sync lookml dashboard params

func (*SyncLookmlDashboardParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SyncLookmlDashboardReader

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

SyncLookmlDashboardReader is a Reader for the SyncLookmlDashboard structure.

func (*SyncLookmlDashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SyncLookmlDashboardTooManyRequests

type SyncLookmlDashboardTooManyRequests struct {
	Payload *models.Error
}
SyncLookmlDashboardTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewSyncLookmlDashboardTooManyRequests

func NewSyncLookmlDashboardTooManyRequests() *SyncLookmlDashboardTooManyRequests

NewSyncLookmlDashboardTooManyRequests creates a SyncLookmlDashboardTooManyRequests with default headers values

func (*SyncLookmlDashboardTooManyRequests) Error

func (*SyncLookmlDashboardTooManyRequests) GetPayload

type SyncLookmlDashboardUnprocessableEntity

type SyncLookmlDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}
SyncLookmlDashboardUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewSyncLookmlDashboardUnprocessableEntity

func NewSyncLookmlDashboardUnprocessableEntity() *SyncLookmlDashboardUnprocessableEntity

NewSyncLookmlDashboardUnprocessableEntity creates a SyncLookmlDashboardUnprocessableEntity with default headers values

func (*SyncLookmlDashboardUnprocessableEntity) Error

func (*SyncLookmlDashboardUnprocessableEntity) GetPayload

type UpdateDashboardBadRequest

type UpdateDashboardBadRequest struct {
	Payload *models.Error
}
UpdateDashboardBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateDashboardBadRequest

func NewUpdateDashboardBadRequest() *UpdateDashboardBadRequest

NewUpdateDashboardBadRequest creates a UpdateDashboardBadRequest with default headers values

func (*UpdateDashboardBadRequest) Error

func (o *UpdateDashboardBadRequest) Error() string

func (*UpdateDashboardBadRequest) GetPayload

func (o *UpdateDashboardBadRequest) GetPayload() *models.Error

type UpdateDashboardElementBadRequest

type UpdateDashboardElementBadRequest struct {
	Payload *models.Error
}
UpdateDashboardElementBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateDashboardElementBadRequest

func NewUpdateDashboardElementBadRequest() *UpdateDashboardElementBadRequest

NewUpdateDashboardElementBadRequest creates a UpdateDashboardElementBadRequest with default headers values

func (*UpdateDashboardElementBadRequest) Error

func (*UpdateDashboardElementBadRequest) GetPayload

type UpdateDashboardElementNotFound

type UpdateDashboardElementNotFound struct {
	Payload *models.Error
}
UpdateDashboardElementNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateDashboardElementNotFound

func NewUpdateDashboardElementNotFound() *UpdateDashboardElementNotFound

NewUpdateDashboardElementNotFound creates a UpdateDashboardElementNotFound with default headers values

func (*UpdateDashboardElementNotFound) Error

func (*UpdateDashboardElementNotFound) GetPayload

func (o *UpdateDashboardElementNotFound) GetPayload() *models.Error

type UpdateDashboardElementOK

type UpdateDashboardElementOK struct {
	Payload *models.DashboardElement
}
UpdateDashboardElementOK describes a response with status code 200, with default header values.

DashboardElement

func NewUpdateDashboardElementOK

func NewUpdateDashboardElementOK() *UpdateDashboardElementOK

NewUpdateDashboardElementOK creates a UpdateDashboardElementOK with default headers values

func (*UpdateDashboardElementOK) Error

func (o *UpdateDashboardElementOK) Error() string

func (*UpdateDashboardElementOK) GetPayload

type UpdateDashboardElementParams

type UpdateDashboardElementParams struct {

	/* Body.

	   DashboardElement
	*/
	Body *models.DashboardElement

	/* DashboardElementID.

	   Id of dashboard element
	*/
	DashboardElementID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

UpdateDashboardElementParams contains all the parameters to send to the API endpoint

for the update dashboard element operation.

Typically these are written to a http.Request.

func NewUpdateDashboardElementParams

func NewUpdateDashboardElementParams() *UpdateDashboardElementParams

NewUpdateDashboardElementParams creates a new UpdateDashboardElementParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateDashboardElementParamsWithContext

func NewUpdateDashboardElementParamsWithContext(ctx context.Context) *UpdateDashboardElementParams

NewUpdateDashboardElementParamsWithContext creates a new UpdateDashboardElementParams object with the ability to set a context for a request.

func NewUpdateDashboardElementParamsWithHTTPClient

func NewUpdateDashboardElementParamsWithHTTPClient(client *http.Client) *UpdateDashboardElementParams

NewUpdateDashboardElementParamsWithHTTPClient creates a new UpdateDashboardElementParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDashboardElementParamsWithTimeout

func NewUpdateDashboardElementParamsWithTimeout(timeout time.Duration) *UpdateDashboardElementParams

NewUpdateDashboardElementParamsWithTimeout creates a new UpdateDashboardElementParams object with the ability to set a timeout on a request.

func (*UpdateDashboardElementParams) SetBody

SetBody adds the body to the update dashboard element params

func (*UpdateDashboardElementParams) SetContext

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

SetContext adds the context to the update dashboard element params

func (*UpdateDashboardElementParams) SetDashboardElementID

func (o *UpdateDashboardElementParams) SetDashboardElementID(dashboardElementID string)

SetDashboardElementID adds the dashboardElementId to the update dashboard element params

func (*UpdateDashboardElementParams) SetDefaults

func (o *UpdateDashboardElementParams) SetDefaults()

SetDefaults hydrates default values in the update dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardElementParams) SetFields

func (o *UpdateDashboardElementParams) SetFields(fields *string)

SetFields adds the fields to the update dashboard element params

func (*UpdateDashboardElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update dashboard element params

func (*UpdateDashboardElementParams) SetTimeout

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

SetTimeout adds the timeout to the update dashboard element params

func (*UpdateDashboardElementParams) WithBody

WithBody adds the body to the update dashboard element params

func (*UpdateDashboardElementParams) WithContext

WithContext adds the context to the update dashboard element params

func (*UpdateDashboardElementParams) WithDashboardElementID

func (o *UpdateDashboardElementParams) WithDashboardElementID(dashboardElementID string) *UpdateDashboardElementParams

WithDashboardElementID adds the dashboardElementID to the update dashboard element params

func (*UpdateDashboardElementParams) WithDefaults

WithDefaults hydrates default values in the update dashboard element params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardElementParams) WithFields

WithFields adds the fields to the update dashboard element params

func (*UpdateDashboardElementParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update dashboard element params

func (*UpdateDashboardElementParams) WithTimeout

WithTimeout adds the timeout to the update dashboard element params

func (*UpdateDashboardElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateDashboardElementReader

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

UpdateDashboardElementReader is a Reader for the UpdateDashboardElement structure.

func (*UpdateDashboardElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDashboardElementTooManyRequests

type UpdateDashboardElementTooManyRequests struct {
	Payload *models.Error
}
UpdateDashboardElementTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateDashboardElementTooManyRequests

func NewUpdateDashboardElementTooManyRequests() *UpdateDashboardElementTooManyRequests

NewUpdateDashboardElementTooManyRequests creates a UpdateDashboardElementTooManyRequests with default headers values

func (*UpdateDashboardElementTooManyRequests) Error

func (*UpdateDashboardElementTooManyRequests) GetPayload

type UpdateDashboardElementUnprocessableEntity

type UpdateDashboardElementUnprocessableEntity struct {
	Payload *models.ValidationError
}
UpdateDashboardElementUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewUpdateDashboardElementUnprocessableEntity

func NewUpdateDashboardElementUnprocessableEntity() *UpdateDashboardElementUnprocessableEntity

NewUpdateDashboardElementUnprocessableEntity creates a UpdateDashboardElementUnprocessableEntity with default headers values

func (*UpdateDashboardElementUnprocessableEntity) Error

func (*UpdateDashboardElementUnprocessableEntity) GetPayload

type UpdateDashboardFilterBadRequest

type UpdateDashboardFilterBadRequest struct {
	Payload *models.Error
}
UpdateDashboardFilterBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateDashboardFilterBadRequest

func NewUpdateDashboardFilterBadRequest() *UpdateDashboardFilterBadRequest

NewUpdateDashboardFilterBadRequest creates a UpdateDashboardFilterBadRequest with default headers values

func (*UpdateDashboardFilterBadRequest) Error

func (*UpdateDashboardFilterBadRequest) GetPayload

func (o *UpdateDashboardFilterBadRequest) GetPayload() *models.Error

type UpdateDashboardFilterNotFound

type UpdateDashboardFilterNotFound struct {
	Payload *models.Error
}
UpdateDashboardFilterNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateDashboardFilterNotFound

func NewUpdateDashboardFilterNotFound() *UpdateDashboardFilterNotFound

NewUpdateDashboardFilterNotFound creates a UpdateDashboardFilterNotFound with default headers values

func (*UpdateDashboardFilterNotFound) Error

func (*UpdateDashboardFilterNotFound) GetPayload

func (o *UpdateDashboardFilterNotFound) GetPayload() *models.Error

type UpdateDashboardFilterOK

type UpdateDashboardFilterOK struct {
	Payload *models.DashboardFilter
}
UpdateDashboardFilterOK describes a response with status code 200, with default header values.

Dashboard Filter

func NewUpdateDashboardFilterOK

func NewUpdateDashboardFilterOK() *UpdateDashboardFilterOK

NewUpdateDashboardFilterOK creates a UpdateDashboardFilterOK with default headers values

func (*UpdateDashboardFilterOK) Error

func (o *UpdateDashboardFilterOK) Error() string

func (*UpdateDashboardFilterOK) GetPayload

type UpdateDashboardFilterParams

type UpdateDashboardFilterParams struct {

	/* Body.

	   Dashboard Filter
	*/
	Body *models.DashboardFilter

	/* DashboardFilterID.

	   Id of dashboard filter
	*/
	DashboardFilterID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

UpdateDashboardFilterParams contains all the parameters to send to the API endpoint

for the update dashboard filter operation.

Typically these are written to a http.Request.

func NewUpdateDashboardFilterParams

func NewUpdateDashboardFilterParams() *UpdateDashboardFilterParams

NewUpdateDashboardFilterParams creates a new UpdateDashboardFilterParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateDashboardFilterParamsWithContext

func NewUpdateDashboardFilterParamsWithContext(ctx context.Context) *UpdateDashboardFilterParams

NewUpdateDashboardFilterParamsWithContext creates a new UpdateDashboardFilterParams object with the ability to set a context for a request.

func NewUpdateDashboardFilterParamsWithHTTPClient

func NewUpdateDashboardFilterParamsWithHTTPClient(client *http.Client) *UpdateDashboardFilterParams

NewUpdateDashboardFilterParamsWithHTTPClient creates a new UpdateDashboardFilterParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDashboardFilterParamsWithTimeout

func NewUpdateDashboardFilterParamsWithTimeout(timeout time.Duration) *UpdateDashboardFilterParams

NewUpdateDashboardFilterParamsWithTimeout creates a new UpdateDashboardFilterParams object with the ability to set a timeout on a request.

func (*UpdateDashboardFilterParams) SetBody

SetBody adds the body to the update dashboard filter params

func (*UpdateDashboardFilterParams) SetContext

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

SetContext adds the context to the update dashboard filter params

func (*UpdateDashboardFilterParams) SetDashboardFilterID

func (o *UpdateDashboardFilterParams) SetDashboardFilterID(dashboardFilterID string)

SetDashboardFilterID adds the dashboardFilterId to the update dashboard filter params

func (*UpdateDashboardFilterParams) SetDefaults

func (o *UpdateDashboardFilterParams) SetDefaults()

SetDefaults hydrates default values in the update dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardFilterParams) SetFields

func (o *UpdateDashboardFilterParams) SetFields(fields *string)

SetFields adds the fields to the update dashboard filter params

func (*UpdateDashboardFilterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update dashboard filter params

func (*UpdateDashboardFilterParams) SetTimeout

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

SetTimeout adds the timeout to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithBody

WithBody adds the body to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithContext

WithContext adds the context to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithDashboardFilterID

func (o *UpdateDashboardFilterParams) WithDashboardFilterID(dashboardFilterID string) *UpdateDashboardFilterParams

WithDashboardFilterID adds the dashboardFilterID to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithDefaults

WithDefaults hydrates default values in the update dashboard filter params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardFilterParams) WithFields

WithFields adds the fields to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update dashboard filter params

func (*UpdateDashboardFilterParams) WithTimeout

WithTimeout adds the timeout to the update dashboard filter params

func (*UpdateDashboardFilterParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateDashboardFilterReader

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

UpdateDashboardFilterReader is a Reader for the UpdateDashboardFilter structure.

func (*UpdateDashboardFilterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDashboardFilterTooManyRequests

type UpdateDashboardFilterTooManyRequests struct {
	Payload *models.Error
}
UpdateDashboardFilterTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateDashboardFilterTooManyRequests

func NewUpdateDashboardFilterTooManyRequests() *UpdateDashboardFilterTooManyRequests

NewUpdateDashboardFilterTooManyRequests creates a UpdateDashboardFilterTooManyRequests with default headers values

func (*UpdateDashboardFilterTooManyRequests) Error

func (*UpdateDashboardFilterTooManyRequests) GetPayload

type UpdateDashboardFilterUnprocessableEntity

type UpdateDashboardFilterUnprocessableEntity struct {
	Payload *models.ValidationError
}
UpdateDashboardFilterUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewUpdateDashboardFilterUnprocessableEntity

func NewUpdateDashboardFilterUnprocessableEntity() *UpdateDashboardFilterUnprocessableEntity

NewUpdateDashboardFilterUnprocessableEntity creates a UpdateDashboardFilterUnprocessableEntity with default headers values

func (*UpdateDashboardFilterUnprocessableEntity) Error

func (*UpdateDashboardFilterUnprocessableEntity) GetPayload

type UpdateDashboardLayoutBadRequest

type UpdateDashboardLayoutBadRequest struct {
	Payload *models.Error
}
UpdateDashboardLayoutBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateDashboardLayoutBadRequest

func NewUpdateDashboardLayoutBadRequest() *UpdateDashboardLayoutBadRequest

NewUpdateDashboardLayoutBadRequest creates a UpdateDashboardLayoutBadRequest with default headers values

func (*UpdateDashboardLayoutBadRequest) Error

func (*UpdateDashboardLayoutBadRequest) GetPayload

func (o *UpdateDashboardLayoutBadRequest) GetPayload() *models.Error

type UpdateDashboardLayoutComponentBadRequest

type UpdateDashboardLayoutComponentBadRequest struct {
	Payload *models.Error
}
UpdateDashboardLayoutComponentBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateDashboardLayoutComponentBadRequest

func NewUpdateDashboardLayoutComponentBadRequest() *UpdateDashboardLayoutComponentBadRequest

NewUpdateDashboardLayoutComponentBadRequest creates a UpdateDashboardLayoutComponentBadRequest with default headers values

func (*UpdateDashboardLayoutComponentBadRequest) Error

func (*UpdateDashboardLayoutComponentBadRequest) GetPayload

type UpdateDashboardLayoutComponentNotFound

type UpdateDashboardLayoutComponentNotFound struct {
	Payload *models.Error
}
UpdateDashboardLayoutComponentNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateDashboardLayoutComponentNotFound

func NewUpdateDashboardLayoutComponentNotFound() *UpdateDashboardLayoutComponentNotFound

NewUpdateDashboardLayoutComponentNotFound creates a UpdateDashboardLayoutComponentNotFound with default headers values

func (*UpdateDashboardLayoutComponentNotFound) Error

func (*UpdateDashboardLayoutComponentNotFound) GetPayload

type UpdateDashboardLayoutComponentOK

type UpdateDashboardLayoutComponentOK struct {
	Payload *models.DashboardLayoutComponent
}
UpdateDashboardLayoutComponentOK describes a response with status code 200, with default header values.

DashboardLayoutComponent

func NewUpdateDashboardLayoutComponentOK

func NewUpdateDashboardLayoutComponentOK() *UpdateDashboardLayoutComponentOK

NewUpdateDashboardLayoutComponentOK creates a UpdateDashboardLayoutComponentOK with default headers values

func (*UpdateDashboardLayoutComponentOK) Error

func (*UpdateDashboardLayoutComponentOK) GetPayload

type UpdateDashboardLayoutComponentParams

type UpdateDashboardLayoutComponentParams struct {

	/* Body.

	   DashboardLayoutComponent
	*/
	Body *models.DashboardLayoutComponent

	/* DashboardLayoutComponentID.

	   Id of dashboard layout component
	*/
	DashboardLayoutComponentID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

UpdateDashboardLayoutComponentParams contains all the parameters to send to the API endpoint

for the update dashboard layout component operation.

Typically these are written to a http.Request.

func NewUpdateDashboardLayoutComponentParams

func NewUpdateDashboardLayoutComponentParams() *UpdateDashboardLayoutComponentParams

NewUpdateDashboardLayoutComponentParams creates a new UpdateDashboardLayoutComponentParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateDashboardLayoutComponentParamsWithContext

func NewUpdateDashboardLayoutComponentParamsWithContext(ctx context.Context) *UpdateDashboardLayoutComponentParams

NewUpdateDashboardLayoutComponentParamsWithContext creates a new UpdateDashboardLayoutComponentParams object with the ability to set a context for a request.

func NewUpdateDashboardLayoutComponentParamsWithHTTPClient

func NewUpdateDashboardLayoutComponentParamsWithHTTPClient(client *http.Client) *UpdateDashboardLayoutComponentParams

NewUpdateDashboardLayoutComponentParamsWithHTTPClient creates a new UpdateDashboardLayoutComponentParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDashboardLayoutComponentParamsWithTimeout

func NewUpdateDashboardLayoutComponentParamsWithTimeout(timeout time.Duration) *UpdateDashboardLayoutComponentParams

NewUpdateDashboardLayoutComponentParamsWithTimeout creates a new UpdateDashboardLayoutComponentParams object with the ability to set a timeout on a request.

func (*UpdateDashboardLayoutComponentParams) SetBody

SetBody adds the body to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) SetContext

SetContext adds the context to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) SetDashboardLayoutComponentID

func (o *UpdateDashboardLayoutComponentParams) SetDashboardLayoutComponentID(dashboardLayoutComponentID string)

SetDashboardLayoutComponentID adds the dashboardLayoutComponentId to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) SetDefaults

func (o *UpdateDashboardLayoutComponentParams) SetDefaults()

SetDefaults hydrates default values in the update dashboard layout component params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardLayoutComponentParams) SetFields

func (o *UpdateDashboardLayoutComponentParams) SetFields(fields *string)

SetFields adds the fields to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) SetTimeout

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

SetTimeout adds the timeout to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithBody

WithBody adds the body to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithContext

WithContext adds the context to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithDashboardLayoutComponentID

func (o *UpdateDashboardLayoutComponentParams) WithDashboardLayoutComponentID(dashboardLayoutComponentID string) *UpdateDashboardLayoutComponentParams

WithDashboardLayoutComponentID adds the dashboardLayoutComponentID to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithDefaults

WithDefaults hydrates default values in the update dashboard layout component params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardLayoutComponentParams) WithFields

WithFields adds the fields to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WithTimeout

WithTimeout adds the timeout to the update dashboard layout component params

func (*UpdateDashboardLayoutComponentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateDashboardLayoutComponentReader

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

UpdateDashboardLayoutComponentReader is a Reader for the UpdateDashboardLayoutComponent structure.

func (*UpdateDashboardLayoutComponentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDashboardLayoutComponentTooManyRequests

type UpdateDashboardLayoutComponentTooManyRequests struct {
	Payload *models.Error
}
UpdateDashboardLayoutComponentTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateDashboardLayoutComponentTooManyRequests

func NewUpdateDashboardLayoutComponentTooManyRequests() *UpdateDashboardLayoutComponentTooManyRequests

NewUpdateDashboardLayoutComponentTooManyRequests creates a UpdateDashboardLayoutComponentTooManyRequests with default headers values

func (*UpdateDashboardLayoutComponentTooManyRequests) Error

func (*UpdateDashboardLayoutComponentTooManyRequests) GetPayload

type UpdateDashboardLayoutComponentUnprocessableEntity

type UpdateDashboardLayoutComponentUnprocessableEntity struct {
	Payload *models.ValidationError
}
UpdateDashboardLayoutComponentUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewUpdateDashboardLayoutComponentUnprocessableEntity

func NewUpdateDashboardLayoutComponentUnprocessableEntity() *UpdateDashboardLayoutComponentUnprocessableEntity

NewUpdateDashboardLayoutComponentUnprocessableEntity creates a UpdateDashboardLayoutComponentUnprocessableEntity with default headers values

func (*UpdateDashboardLayoutComponentUnprocessableEntity) Error

func (*UpdateDashboardLayoutComponentUnprocessableEntity) GetPayload

type UpdateDashboardLayoutNotFound

type UpdateDashboardLayoutNotFound struct {
	Payload *models.Error
}
UpdateDashboardLayoutNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateDashboardLayoutNotFound

func NewUpdateDashboardLayoutNotFound() *UpdateDashboardLayoutNotFound

NewUpdateDashboardLayoutNotFound creates a UpdateDashboardLayoutNotFound with default headers values

func (*UpdateDashboardLayoutNotFound) Error

func (*UpdateDashboardLayoutNotFound) GetPayload

func (o *UpdateDashboardLayoutNotFound) GetPayload() *models.Error

type UpdateDashboardLayoutOK

type UpdateDashboardLayoutOK struct {
	Payload *models.DashboardLayout
}
UpdateDashboardLayoutOK describes a response with status code 200, with default header values.

DashboardLayout

func NewUpdateDashboardLayoutOK

func NewUpdateDashboardLayoutOK() *UpdateDashboardLayoutOK

NewUpdateDashboardLayoutOK creates a UpdateDashboardLayoutOK with default headers values

func (*UpdateDashboardLayoutOK) Error

func (o *UpdateDashboardLayoutOK) Error() string

func (*UpdateDashboardLayoutOK) GetPayload

type UpdateDashboardLayoutParams

type UpdateDashboardLayoutParams struct {

	/* Body.

	   DashboardLayout
	*/
	Body *models.DashboardLayout

	/* DashboardLayoutID.

	   Id of dashboard layout
	*/
	DashboardLayoutID string

	/* Fields.

	   Requested fields.
	*/
	Fields *string

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

UpdateDashboardLayoutParams contains all the parameters to send to the API endpoint

for the update dashboard layout operation.

Typically these are written to a http.Request.

func NewUpdateDashboardLayoutParams

func NewUpdateDashboardLayoutParams() *UpdateDashboardLayoutParams

NewUpdateDashboardLayoutParams creates a new UpdateDashboardLayoutParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateDashboardLayoutParamsWithContext

func NewUpdateDashboardLayoutParamsWithContext(ctx context.Context) *UpdateDashboardLayoutParams

NewUpdateDashboardLayoutParamsWithContext creates a new UpdateDashboardLayoutParams object with the ability to set a context for a request.

func NewUpdateDashboardLayoutParamsWithHTTPClient

func NewUpdateDashboardLayoutParamsWithHTTPClient(client *http.Client) *UpdateDashboardLayoutParams

NewUpdateDashboardLayoutParamsWithHTTPClient creates a new UpdateDashboardLayoutParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDashboardLayoutParamsWithTimeout

func NewUpdateDashboardLayoutParamsWithTimeout(timeout time.Duration) *UpdateDashboardLayoutParams

NewUpdateDashboardLayoutParamsWithTimeout creates a new UpdateDashboardLayoutParams object with the ability to set a timeout on a request.

func (*UpdateDashboardLayoutParams) SetBody

SetBody adds the body to the update dashboard layout params

func (*UpdateDashboardLayoutParams) SetContext

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

SetContext adds the context to the update dashboard layout params

func (*UpdateDashboardLayoutParams) SetDashboardLayoutID

func (o *UpdateDashboardLayoutParams) SetDashboardLayoutID(dashboardLayoutID string)

SetDashboardLayoutID adds the dashboardLayoutId to the update dashboard layout params

func (*UpdateDashboardLayoutParams) SetDefaults

func (o *UpdateDashboardLayoutParams) SetDefaults()

SetDefaults hydrates default values in the update dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardLayoutParams) SetFields

func (o *UpdateDashboardLayoutParams) SetFields(fields *string)

SetFields adds the fields to the update dashboard layout params

func (*UpdateDashboardLayoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update dashboard layout params

func (*UpdateDashboardLayoutParams) SetTimeout

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

SetTimeout adds the timeout to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithBody

WithBody adds the body to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithContext

WithContext adds the context to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithDashboardLayoutID

func (o *UpdateDashboardLayoutParams) WithDashboardLayoutID(dashboardLayoutID string) *UpdateDashboardLayoutParams

WithDashboardLayoutID adds the dashboardLayoutID to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithDefaults

WithDefaults hydrates default values in the update dashboard layout params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardLayoutParams) WithFields

WithFields adds the fields to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WithTimeout

WithTimeout adds the timeout to the update dashboard layout params

func (*UpdateDashboardLayoutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateDashboardLayoutReader

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

UpdateDashboardLayoutReader is a Reader for the UpdateDashboardLayout structure.

func (*UpdateDashboardLayoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDashboardLayoutTooManyRequests

type UpdateDashboardLayoutTooManyRequests struct {
	Payload *models.Error
}
UpdateDashboardLayoutTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateDashboardLayoutTooManyRequests

func NewUpdateDashboardLayoutTooManyRequests() *UpdateDashboardLayoutTooManyRequests

NewUpdateDashboardLayoutTooManyRequests creates a UpdateDashboardLayoutTooManyRequests with default headers values

func (*UpdateDashboardLayoutTooManyRequests) Error

func (*UpdateDashboardLayoutTooManyRequests) GetPayload

type UpdateDashboardLayoutUnprocessableEntity

type UpdateDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}
UpdateDashboardLayoutUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewUpdateDashboardLayoutUnprocessableEntity

func NewUpdateDashboardLayoutUnprocessableEntity() *UpdateDashboardLayoutUnprocessableEntity

NewUpdateDashboardLayoutUnprocessableEntity creates a UpdateDashboardLayoutUnprocessableEntity with default headers values

func (*UpdateDashboardLayoutUnprocessableEntity) Error

func (*UpdateDashboardLayoutUnprocessableEntity) GetPayload

type UpdateDashboardMethodNotAllowed

type UpdateDashboardMethodNotAllowed struct {
	Payload *models.Error
}
UpdateDashboardMethodNotAllowed describes a response with status code 405, with default header values.

Resource Can't Be Modified

func NewUpdateDashboardMethodNotAllowed

func NewUpdateDashboardMethodNotAllowed() *UpdateDashboardMethodNotAllowed

NewUpdateDashboardMethodNotAllowed creates a UpdateDashboardMethodNotAllowed with default headers values

func (*UpdateDashboardMethodNotAllowed) Error

func (*UpdateDashboardMethodNotAllowed) GetPayload

func (o *UpdateDashboardMethodNotAllowed) GetPayload() *models.Error

type UpdateDashboardNotFound

type UpdateDashboardNotFound struct {
	Payload *models.Error
}
UpdateDashboardNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateDashboardNotFound

func NewUpdateDashboardNotFound() *UpdateDashboardNotFound

NewUpdateDashboardNotFound creates a UpdateDashboardNotFound with default headers values

func (*UpdateDashboardNotFound) Error

func (o *UpdateDashboardNotFound) Error() string

func (*UpdateDashboardNotFound) GetPayload

func (o *UpdateDashboardNotFound) GetPayload() *models.Error

type UpdateDashboardOK

type UpdateDashboardOK struct {
	Payload *models.Dashboard
}
UpdateDashboardOK describes a response with status code 200, with default header values.

Dashboard

func NewUpdateDashboardOK

func NewUpdateDashboardOK() *UpdateDashboardOK

NewUpdateDashboardOK creates a UpdateDashboardOK with default headers values

func (*UpdateDashboardOK) Error

func (o *UpdateDashboardOK) Error() string

func (*UpdateDashboardOK) GetPayload

func (o *UpdateDashboardOK) GetPayload() *models.Dashboard

type UpdateDashboardParams

type UpdateDashboardParams struct {

	/* Body.

	   Dashboard
	*/
	Body *models.Dashboard

	/* DashboardID.

	   Id of dashboard
	*/
	DashboardID string

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

UpdateDashboardParams contains all the parameters to send to the API endpoint

for the update dashboard operation.

Typically these are written to a http.Request.

func NewUpdateDashboardParams

func NewUpdateDashboardParams() *UpdateDashboardParams

NewUpdateDashboardParams creates a new UpdateDashboardParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateDashboardParamsWithContext

func NewUpdateDashboardParamsWithContext(ctx context.Context) *UpdateDashboardParams

NewUpdateDashboardParamsWithContext creates a new UpdateDashboardParams object with the ability to set a context for a request.

func NewUpdateDashboardParamsWithHTTPClient

func NewUpdateDashboardParamsWithHTTPClient(client *http.Client) *UpdateDashboardParams

NewUpdateDashboardParamsWithHTTPClient creates a new UpdateDashboardParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDashboardParamsWithTimeout

func NewUpdateDashboardParamsWithTimeout(timeout time.Duration) *UpdateDashboardParams

NewUpdateDashboardParamsWithTimeout creates a new UpdateDashboardParams object with the ability to set a timeout on a request.

func (*UpdateDashboardParams) SetBody

func (o *UpdateDashboardParams) SetBody(body *models.Dashboard)

SetBody adds the body to the update dashboard params

func (*UpdateDashboardParams) SetContext

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

SetContext adds the context to the update dashboard params

func (*UpdateDashboardParams) SetDashboardID

func (o *UpdateDashboardParams) SetDashboardID(dashboardID string)

SetDashboardID adds the dashboardId to the update dashboard params

func (*UpdateDashboardParams) SetDefaults

func (o *UpdateDashboardParams) SetDefaults()

SetDefaults hydrates default values in the update dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update dashboard params

func (*UpdateDashboardParams) SetTimeout

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

SetTimeout adds the timeout to the update dashboard params

func (*UpdateDashboardParams) WithBody

WithBody adds the body to the update dashboard params

func (*UpdateDashboardParams) WithContext

WithContext adds the context to the update dashboard params

func (*UpdateDashboardParams) WithDashboardID

func (o *UpdateDashboardParams) WithDashboardID(dashboardID string) *UpdateDashboardParams

WithDashboardID adds the dashboardID to the update dashboard params

func (*UpdateDashboardParams) WithDefaults

func (o *UpdateDashboardParams) WithDefaults() *UpdateDashboardParams

WithDefaults hydrates default values in the update dashboard params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateDashboardParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update dashboard params

func (*UpdateDashboardParams) WithTimeout

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

WithTimeout adds the timeout to the update dashboard params

func (*UpdateDashboardParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateDashboardReader

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

UpdateDashboardReader is a Reader for the UpdateDashboard structure.

func (*UpdateDashboardReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDashboardTooManyRequests

type UpdateDashboardTooManyRequests struct {
	Payload *models.Error
}
UpdateDashboardTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateDashboardTooManyRequests

func NewUpdateDashboardTooManyRequests() *UpdateDashboardTooManyRequests

NewUpdateDashboardTooManyRequests creates a UpdateDashboardTooManyRequests with default headers values

func (*UpdateDashboardTooManyRequests) Error

func (*UpdateDashboardTooManyRequests) GetPayload

func (o *UpdateDashboardTooManyRequests) GetPayload() *models.Error

type UpdateDashboardUnprocessableEntity

type UpdateDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}
UpdateDashboardUnprocessableEntity describes a response with status code 422, with default header values.

Validation Error

func NewUpdateDashboardUnprocessableEntity

func NewUpdateDashboardUnprocessableEntity() *UpdateDashboardUnprocessableEntity

NewUpdateDashboardUnprocessableEntity creates a UpdateDashboardUnprocessableEntity with default headers values

func (*UpdateDashboardUnprocessableEntity) Error

func (*UpdateDashboardUnprocessableEntity) GetPayload

Source Files

Jump to

Keyboard shortcuts

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