dashboard

package
v0.0.0-...-9dad3f6 Latest Latest
Warning

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

Go to latest
Published: Dec 3, 2023 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewAllDashboardsParamsWithContext

func NewAllDashboardsParamsWithContext(ctx context.Context) *AllDashboardsParams

NewAllDashboardsParamsWithContext creates a new AllDashboardsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 New

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

New creates a new dashboard API client.

func (*Client) AllDashboards

func (a *Client) AllDashboards(params *AllDashboardsParams) (*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) (*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) (*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) (*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) (*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) (*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) DashboardDashboardElements

func (a *Client) DashboardDashboardElements(params *DashboardDashboardElementsParams) (*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) (*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) (*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) (*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) (*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) (*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) (*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) (*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) DeleteDashboard

func (a *Client) DeleteDashboard(params *DeleteDashboardParams) (*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) (*DeleteDashboardElementNoContent, error)

DeleteDashboardElement deletes dashboard element

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

func (*Client) DeleteDashboardFilter

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

DeleteDashboardFilter deletes dashboard filter

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

func (*Client) DeleteDashboardLayout

func (a *Client) DeleteDashboardLayout(params *DeleteDashboardLayoutParams) (*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 puts 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) (*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) (*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) (*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) (*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) (*UpdateDashboardElementOK, error)

UpdateDashboardElement updates dashboard element

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

func (*Client) UpdateDashboardFilter

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

UpdateDashboardFilter updates dashboard filter

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

func (*Client) UpdateDashboardLayout

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

UpdateDashboardLayout updates dashboard layout

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

func (*Client) UpdateDashboardLayoutComponent

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

UpdateDashboardLayoutComponent updates dashboard layout component

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

type CreateDashboardBadRequest

type CreateDashboardBadRequest struct {
	Payload *models.Error
}

CreateDashboardBadRequest handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewCreateDashboardElementParamsWithContext

func NewCreateDashboardElementParamsWithContext(ctx context.Context) *CreateDashboardElementParams

NewCreateDashboardElementParamsWithContext creates a new CreateDashboardElementParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 CreateDashboardElementUnprocessableEntity

type CreateDashboardElementUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateDashboardElementUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewCreateDashboardFilterParamsWithContext

func NewCreateDashboardFilterParamsWithContext(ctx context.Context) *CreateDashboardFilterParams

NewCreateDashboardFilterParamsWithContext creates a new CreateDashboardFilterParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 CreateDashboardFilterUnprocessableEntity

type CreateDashboardFilterUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateDashboardFilterUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewCreateDashboardLayoutParamsWithContext

func NewCreateDashboardLayoutParamsWithContext(ctx context.Context) *CreateDashboardLayoutParams

NewCreateDashboardLayoutParamsWithContext creates a new CreateDashboardLayoutParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 CreateDashboardLayoutUnprocessableEntity

type CreateDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateDashboardLayoutUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewCreateDashboardParamsWithContext

func NewCreateDashboardParamsWithContext(ctx context.Context) *CreateDashboardParams

NewCreateDashboardParamsWithContext creates a new CreateDashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 CreateDashboardUnprocessableEntity

type CreateDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateDashboardUnprocessableEntity handles this case 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 DashboardBadRequest

type DashboardBadRequest struct {
	Payload *models.Error
}

DashboardBadRequest handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardDashboardElementsParamsWithContext

func NewDashboardDashboardElementsParamsWithContext(ctx context.Context) *DashboardDashboardElementsParams

NewDashboardDashboardElementsParamsWithContext creates a new DashboardDashboardElementsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardDashboardFiltersParamsWithContext

func NewDashboardDashboardFiltersParamsWithContext(ctx context.Context) *DashboardDashboardFiltersParams

NewDashboardDashboardFiltersParamsWithContext creates a new DashboardDashboardFiltersParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardDashboardLayoutsParamsWithContext

func NewDashboardDashboardLayoutsParamsWithContext(ctx context.Context) *DashboardDashboardLayoutsParams

NewDashboardDashboardLayoutsParamsWithContext creates a new DashboardDashboardLayoutsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardElementParamsWithContext

func NewDashboardElementParamsWithContext(ctx context.Context) *DashboardElementParams

NewDashboardElementParamsWithContext creates a new DashboardElementParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardFilterParamsWithContext

func NewDashboardFilterParamsWithContext(ctx context.Context) *DashboardFilterParams

NewDashboardFilterParamsWithContext creates a new DashboardFilterParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardLayoutComponentParamsWithContext

func NewDashboardLayoutComponentParamsWithContext(ctx context.Context) *DashboardLayoutComponentParams

NewDashboardLayoutComponentParamsWithContext creates a new DashboardLayoutComponentParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardLayoutDashboardLayoutComponentsParamsWithContext

func NewDashboardLayoutDashboardLayoutComponentsParamsWithContext(ctx context.Context) *DashboardLayoutDashboardLayoutComponentsParams

NewDashboardLayoutDashboardLayoutComponentsParamsWithContext creates a new DashboardLayoutDashboardLayoutComponentsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 values initialized.

func NewDashboardLayoutParamsWithContext

func NewDashboardLayoutParamsWithContext(ctx context.Context) *DashboardLayoutParams

NewDashboardLayoutParamsWithContext creates a new DashboardLayoutParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 DashboardNotFound

type DashboardNotFound struct {
	Payload *models.Error
}

DashboardNotFound handles this case 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 handles this case 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 values initialized.

func NewDashboardParamsWithContext

func NewDashboardParamsWithContext(ctx context.Context) *DashboardParams

NewDashboardParamsWithContext creates a new DashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 DeleteDashboardElementBadRequest

type DeleteDashboardElementBadRequest struct {
	Payload *models.Error
}

DeleteDashboardElementBadRequest handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDeleteDashboardElementParamsWithContext

func NewDeleteDashboardElementParamsWithContext(ctx context.Context) *DeleteDashboardElementParams

NewDeleteDashboardElementParamsWithContext creates a new DeleteDashboardElementParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 DeleteDashboardFilterBadRequest

type DeleteDashboardFilterBadRequest struct {
	Payload *models.Error
}

DeleteDashboardFilterBadRequest handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDeleteDashboardFilterParamsWithContext

func NewDeleteDashboardFilterParamsWithContext(ctx context.Context) *DeleteDashboardFilterParams

NewDeleteDashboardFilterParamsWithContext creates a new DeleteDashboardFilterParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 DeleteDashboardLayoutNoContent

type DeleteDashboardLayoutNoContent struct {
	Payload string
}

DeleteDashboardLayoutNoContent handles this case 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 handles this case 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 values initialized.

func NewDeleteDashboardLayoutParamsWithContext

func NewDeleteDashboardLayoutParamsWithContext(ctx context.Context) *DeleteDashboardLayoutParams

NewDeleteDashboardLayoutParamsWithContext creates a new DeleteDashboardLayoutParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 DeleteDashboardLayoutUnprocessableEntity

type DeleteDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}

DeleteDashboardLayoutUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewDeleteDashboardParamsWithContext

func NewDeleteDashboardParamsWithContext(ctx context.Context) *DeleteDashboardParams

NewDeleteDashboardParamsWithContext creates a new DeleteDashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 ImportLookmlDashboardBadRequest

type ImportLookmlDashboardBadRequest struct {
	Payload *models.Error
}

ImportLookmlDashboardBadRequest handles this case 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 ImportLookmlDashboardCreated

type ImportLookmlDashboardCreated struct {
	Payload *models.Dashboard
}

ImportLookmlDashboardCreated handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewImportLookmlDashboardParamsWithContext

func NewImportLookmlDashboardParamsWithContext(ctx context.Context) *ImportLookmlDashboardParams

NewImportLookmlDashboardParamsWithContext creates a new ImportLookmlDashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 ImportLookmlDashboardUnprocessableEntity

type ImportLookmlDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}

ImportLookmlDashboardUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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

	*/
	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

	*/
	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 values initialized.

func NewSearchDashboardElementsParamsWithContext

func NewSearchDashboardElementsParamsWithContext(ctx context.Context) *SearchDashboardElementsParams

NewSearchDashboardElementsParamsWithContext creates a new SearchDashboardElementsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 handles this case 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 handles this case 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 handles this case 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.

	*/
	ContentFavoriteID *int64
	/*ContentMetadataID
	  Filter on a content favorite id.

	*/
	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
	/*ID
	  Match dashboard id.

	*/
	ID *int64
	/*Limit
	  Number of results to return. (used with offset and takes priority over page and per_page)

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

	*/
	Offset *int64
	/*Page
	  Requested page.

	*/
	Page *int64
	/*PerPage
	  Results per page.

	*/
	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, :description, :view_count, :favorite_count, :slug, :content_favorite_id, :content_metadata_id, :deleted, :deleted_at, :last_viewed_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 values initialized.

func NewSearchDashboardsParamsWithContext

func NewSearchDashboardsParamsWithContext(ctx context.Context) *SearchDashboardsParams

NewSearchDashboardsParamsWithContext creates a new SearchDashboardsParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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) 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) 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewSyncLookmlDashboardParamsWithContext

func NewSyncLookmlDashboardParamsWithContext(ctx context.Context) *SyncLookmlDashboardParams

NewSyncLookmlDashboardParamsWithContext creates a new SyncLookmlDashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 SyncLookmlDashboardUnprocessableEntity

type SyncLookmlDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}

SyncLookmlDashboardUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewUpdateDashboardElementParamsWithContext

func NewUpdateDashboardElementParamsWithContext(ctx context.Context) *UpdateDashboardElementParams

NewUpdateDashboardElementParamsWithContext creates a new UpdateDashboardElementParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 UpdateDashboardElementUnprocessableEntity

type UpdateDashboardElementUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateDashboardElementUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewUpdateDashboardFilterParamsWithContext

func NewUpdateDashboardFilterParamsWithContext(ctx context.Context) *UpdateDashboardFilterParams

NewUpdateDashboardFilterParamsWithContext creates a new UpdateDashboardFilterParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 UpdateDashboardFilterUnprocessableEntity

type UpdateDashboardFilterUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateDashboardFilterUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewUpdateDashboardLayoutComponentParamsWithContext

func NewUpdateDashboardLayoutComponentParamsWithContext(ctx context.Context) *UpdateDashboardLayoutComponentParams

NewUpdateDashboardLayoutComponentParamsWithContext creates a new UpdateDashboardLayoutComponentParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 UpdateDashboardLayoutComponentUnprocessableEntity

type UpdateDashboardLayoutComponentUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateDashboardLayoutComponentUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewUpdateDashboardLayoutParamsWithContext

func NewUpdateDashboardLayoutParamsWithContext(ctx context.Context) *UpdateDashboardLayoutParams

NewUpdateDashboardLayoutParamsWithContext creates a new UpdateDashboardLayoutParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 UpdateDashboardLayoutUnprocessableEntity

type UpdateDashboardLayoutUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateDashboardLayoutUnprocessableEntity handles this case 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 handles this case 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 handles this case 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 handles this case 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 values initialized.

func NewUpdateDashboardParamsWithContext

func NewUpdateDashboardParamsWithContext(ctx context.Context) *UpdateDashboardParams

NewUpdateDashboardParamsWithContext creates a new UpdateDashboardParams object with the default values initialized, and 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 default values initialized, and 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 default values initialized, and 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) 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) 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 UpdateDashboardUnprocessableEntity

type UpdateDashboardUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateDashboardUnprocessableEntity handles this case 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