apps

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Oct 26, 2018 License: Apache-2.0 Imports: 10 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for apps API

func New

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

New creates a new apps API client.

func (*Client) CreateApp

func (a *Client) CreateApp(params *CreateAppParams, authInfo runtime.ClientAuthInfoWriter) (*CreateAppOK, error)

CreateApp creates an app

Create an app integration.

A single developer account is allowed to contain a maximum of 500 apps. Upon hitting that limit a 422 error response is returned with an error code of LimitError.

func (*Client) DeleteApp

func (a *Client) DeleteApp(params *DeleteAppParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteAppOK, error)

DeleteApp deletes an app

Delete an app.

func (*Client) GenerateAppOauth

func (a *Client) GenerateAppOauth(params *GenerateAppOauthParams, authInfo runtime.ClientAuthInfoWriter) (*GenerateAppOauthOK, error)

GenerateAppOauth generates an app s oauth client secret

When an app is first created an OAuth client/secret are automatically generated for the integration. However, there are times when it maybe useful to re-generate a client/secret. Such as in cases where a secret becomes compromised.

func (*Client) GetApp

func (a *Client) GetApp(params *GetAppParams, authInfo runtime.ClientAuthInfoWriter) (*GetAppOK, error)

GetApp gets an app

Get a single app.

func (*Client) GetAppOauth

func (a *Client) GetAppOauth(params *GetAppOauthParams, authInfo runtime.ClientAuthInfoWriter) (*GetAppOauthOK, error)

GetAppOauth gets an app s oauth settings

Get an app's oauth settings.

func (*Client) GetAppSettings

func (a *Client) GetAppSettings(params *GetAppSettingsParams, authInfo runtime.ClientAuthInfoWriter) (*GetAppSettingsOK, error)

GetAppSettings gets settings

Get settings for an app.

func (*Client) ListApps

func (a *Client) ListApps(params *ListAppsParams, authInfo runtime.ClientAuthInfoWriter) (*ListAppsOK, error)

ListApps lists apps

List all apps configured in an account.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateApp

func (a *Client) UpdateApp(params *UpdateAppParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateAppOK, error)

UpdateApp updates an app

Update an app.

func (*Client) UpdateAppOauth

func (a *Client) UpdateAppOauth(params *UpdateAppOauthParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateAppOauthOK, error)

UpdateAppOauth updates an app s oauth settings

Update an app's oauth settings.

func (*Client) UpdateAppSettings

func (a *Client) UpdateAppSettings(params *UpdateAppSettingsParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateAppSettingsOK, error)

UpdateAppSettings updates settings

Update settings for an app.

type CreateAppBadRequest

type CreateAppBadRequest struct {
	Payload *models.ErrorResponse
}

CreateAppBadRequest handles this case with default header values.

Bad request

func NewCreateAppBadRequest

func NewCreateAppBadRequest() *CreateAppBadRequest

NewCreateAppBadRequest creates a CreateAppBadRequest with default headers values

func (*CreateAppBadRequest) Error

func (o *CreateAppBadRequest) Error() string

type CreateAppDefault

type CreateAppDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

CreateAppDefault handles this case with default header values.

Unexpected error

func NewCreateAppDefault

func NewCreateAppDefault(code int) *CreateAppDefault

NewCreateAppDefault creates a CreateAppDefault with default headers values

func (*CreateAppDefault) Code

func (o *CreateAppDefault) Code() int

Code gets the status code for the create app default response

func (*CreateAppDefault) Error

func (o *CreateAppDefault) Error() string

type CreateAppForbidden

type CreateAppForbidden struct {
}

CreateAppForbidden handles this case with default header values.

Not authorized

func NewCreateAppForbidden

func NewCreateAppForbidden() *CreateAppForbidden

NewCreateAppForbidden creates a CreateAppForbidden with default headers values

func (*CreateAppForbidden) Error

func (o *CreateAppForbidden) Error() string

type CreateAppOK

type CreateAppOK struct {
	Payload *models.CreateAppResponse
}

CreateAppOK handles this case with default header values.

An app model.

func NewCreateAppOK

func NewCreateAppOK() *CreateAppOK

NewCreateAppOK creates a CreateAppOK with default headers values

func (*CreateAppOK) Error

func (o *CreateAppOK) Error() string

type CreateAppParams

type CreateAppParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*CreateOrUpdateAppRequest*/
	CreateOrUpdateAppRequest *models.CreateOrUpdateAppRequest

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

CreateAppParams contains all the parameters to send to the API endpoint for the create app operation typically these are written to a http.Request

func NewCreateAppParams

func NewCreateAppParams() *CreateAppParams

NewCreateAppParams creates a new CreateAppParams object with the default values initialized.

func NewCreateAppParamsWithContext

func NewCreateAppParamsWithContext(ctx context.Context) *CreateAppParams

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

func NewCreateAppParamsWithHTTPClient

func NewCreateAppParamsWithHTTPClient(client *http.Client) *CreateAppParams

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

func NewCreateAppParamsWithTimeout

func NewCreateAppParamsWithTimeout(timeout time.Duration) *CreateAppParams

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

func (*CreateAppParams) SetAuthorization

func (o *CreateAppParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the create app params

func (*CreateAppParams) SetContext

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

SetContext adds the context to the create app params

func (*CreateAppParams) SetCreateOrUpdateAppRequest

func (o *CreateAppParams) SetCreateOrUpdateAppRequest(createOrUpdateAppRequest *models.CreateOrUpdateAppRequest)

SetCreateOrUpdateAppRequest adds the createOrUpdateAppRequest to the create app params

func (*CreateAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create app params

func (*CreateAppParams) SetTimeout

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

SetTimeout adds the timeout to the create app params

func (*CreateAppParams) WithAuthorization

func (o *CreateAppParams) WithAuthorization(authorization string) *CreateAppParams

WithAuthorization adds the authorization to the create app params

func (*CreateAppParams) WithContext

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

WithContext adds the context to the create app params

func (*CreateAppParams) WithCreateOrUpdateAppRequest

func (o *CreateAppParams) WithCreateOrUpdateAppRequest(createOrUpdateAppRequest *models.CreateOrUpdateAppRequest) *CreateAppParams

WithCreateOrUpdateAppRequest adds the createOrUpdateAppRequest to the create app params

func (*CreateAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create app params

func (*CreateAppParams) WithTimeout

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

WithTimeout adds the timeout to the create app params

func (*CreateAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateAppReader

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

CreateAppReader is a Reader for the CreateApp structure.

func (*CreateAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateAppTooManyRequests

type CreateAppTooManyRequests struct {
	Payload *models.ErrorResponse
}

CreateAppTooManyRequests handles this case with default header values.

Too many requests

func NewCreateAppTooManyRequests

func NewCreateAppTooManyRequests() *CreateAppTooManyRequests

NewCreateAppTooManyRequests creates a CreateAppTooManyRequests with default headers values

func (*CreateAppTooManyRequests) Error

func (o *CreateAppTooManyRequests) Error() string

type CreateAppUnauthorized

type CreateAppUnauthorized struct {
}

CreateAppUnauthorized handles this case with default header values.

Not authenticated

func NewCreateAppUnauthorized

func NewCreateAppUnauthorized() *CreateAppUnauthorized

NewCreateAppUnauthorized creates a CreateAppUnauthorized with default headers values

func (*CreateAppUnauthorized) Error

func (o *CreateAppUnauthorized) Error() string

type CreateAppUnprocessableEntity

type CreateAppUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

CreateAppUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewCreateAppUnprocessableEntity

func NewCreateAppUnprocessableEntity() *CreateAppUnprocessableEntity

NewCreateAppUnprocessableEntity creates a CreateAppUnprocessableEntity with default headers values

func (*CreateAppUnprocessableEntity) Error

type DeleteAppBadRequest

type DeleteAppBadRequest struct {
	Payload *models.ErrorResponse
}

DeleteAppBadRequest handles this case with default header values.

Bad request

func NewDeleteAppBadRequest

func NewDeleteAppBadRequest() *DeleteAppBadRequest

NewDeleteAppBadRequest creates a DeleteAppBadRequest with default headers values

func (*DeleteAppBadRequest) Error

func (o *DeleteAppBadRequest) Error() string

type DeleteAppDefault

type DeleteAppDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

DeleteAppDefault handles this case with default header values.

Unexpected error

func NewDeleteAppDefault

func NewDeleteAppDefault(code int) *DeleteAppDefault

NewDeleteAppDefault creates a DeleteAppDefault with default headers values

func (*DeleteAppDefault) Code

func (o *DeleteAppDefault) Code() int

Code gets the status code for the delete app default response

func (*DeleteAppDefault) Error

func (o *DeleteAppDefault) Error() string

type DeleteAppForbidden

type DeleteAppForbidden struct {
}

DeleteAppForbidden handles this case with default header values.

Not authorized

func NewDeleteAppForbidden

func NewDeleteAppForbidden() *DeleteAppForbidden

NewDeleteAppForbidden creates a DeleteAppForbidden with default headers values

func (*DeleteAppForbidden) Error

func (o *DeleteAppForbidden) Error() string

type DeleteAppOK

type DeleteAppOK struct {
	Payload models.DeleteAppResponse
}

DeleteAppOK handles this case with default header values.

The number of deleted apps.

func NewDeleteAppOK

func NewDeleteAppOK() *DeleteAppOK

NewDeleteAppOK creates a DeleteAppOK with default headers values

func (*DeleteAppOK) Error

func (o *DeleteAppOK) Error() string

type DeleteAppParams

type DeleteAppParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string

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

DeleteAppParams contains all the parameters to send to the API endpoint for the delete app operation typically these are written to a http.Request

func NewDeleteAppParams

func NewDeleteAppParams() *DeleteAppParams

NewDeleteAppParams creates a new DeleteAppParams object with the default values initialized.

func NewDeleteAppParamsWithContext

func NewDeleteAppParamsWithContext(ctx context.Context) *DeleteAppParams

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

func NewDeleteAppParamsWithHTTPClient

func NewDeleteAppParamsWithHTTPClient(client *http.Client) *DeleteAppParams

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

func NewDeleteAppParamsWithTimeout

func NewDeleteAppParamsWithTimeout(timeout time.Duration) *DeleteAppParams

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

func (*DeleteAppParams) SetAppNameOrID

func (o *DeleteAppParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the delete app params

func (*DeleteAppParams) SetAuthorization

func (o *DeleteAppParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the delete app params

func (*DeleteAppParams) SetContext

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

SetContext adds the context to the delete app params

func (*DeleteAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete app params

func (*DeleteAppParams) SetTimeout

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

SetTimeout adds the timeout to the delete app params

func (*DeleteAppParams) WithAppNameOrID

func (o *DeleteAppParams) WithAppNameOrID(appNameOrID string) *DeleteAppParams

WithAppNameOrID adds the appNameOrID to the delete app params

func (*DeleteAppParams) WithAuthorization

func (o *DeleteAppParams) WithAuthorization(authorization string) *DeleteAppParams

WithAuthorization adds the authorization to the delete app params

func (*DeleteAppParams) WithContext

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

WithContext adds the context to the delete app params

func (*DeleteAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete app params

func (*DeleteAppParams) WithTimeout

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

WithTimeout adds the timeout to the delete app params

func (*DeleteAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteAppReader

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

DeleteAppReader is a Reader for the DeleteApp structure.

func (*DeleteAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAppTooManyRequests

type DeleteAppTooManyRequests struct {
	Payload *models.ErrorResponse
}

DeleteAppTooManyRequests handles this case with default header values.

Too many requests

func NewDeleteAppTooManyRequests

func NewDeleteAppTooManyRequests() *DeleteAppTooManyRequests

NewDeleteAppTooManyRequests creates a DeleteAppTooManyRequests with default headers values

func (*DeleteAppTooManyRequests) Error

func (o *DeleteAppTooManyRequests) Error() string

type DeleteAppUnauthorized

type DeleteAppUnauthorized struct {
}

DeleteAppUnauthorized handles this case with default header values.

Not authenticated

func NewDeleteAppUnauthorized

func NewDeleteAppUnauthorized() *DeleteAppUnauthorized

NewDeleteAppUnauthorized creates a DeleteAppUnauthorized with default headers values

func (*DeleteAppUnauthorized) Error

func (o *DeleteAppUnauthorized) Error() string

type GenerateAppOauthBadRequest

type GenerateAppOauthBadRequest struct {
	Payload *models.ErrorResponse
}

GenerateAppOauthBadRequest handles this case with default header values.

Bad request

func NewGenerateAppOauthBadRequest

func NewGenerateAppOauthBadRequest() *GenerateAppOauthBadRequest

NewGenerateAppOauthBadRequest creates a GenerateAppOauthBadRequest with default headers values

func (*GenerateAppOauthBadRequest) Error

type GenerateAppOauthDefault

type GenerateAppOauthDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

GenerateAppOauthDefault handles this case with default header values.

Unexpected error

func NewGenerateAppOauthDefault

func NewGenerateAppOauthDefault(code int) *GenerateAppOauthDefault

NewGenerateAppOauthDefault creates a GenerateAppOauthDefault with default headers values

func (*GenerateAppOauthDefault) Code

func (o *GenerateAppOauthDefault) Code() int

Code gets the status code for the generate app oauth default response

func (*GenerateAppOauthDefault) Error

func (o *GenerateAppOauthDefault) Error() string

type GenerateAppOauthForbidden

type GenerateAppOauthForbidden struct {
}

GenerateAppOauthForbidden handles this case with default header values.

Not authorized

func NewGenerateAppOauthForbidden

func NewGenerateAppOauthForbidden() *GenerateAppOauthForbidden

NewGenerateAppOauthForbidden creates a GenerateAppOauthForbidden with default headers values

func (*GenerateAppOauthForbidden) Error

func (o *GenerateAppOauthForbidden) Error() string

type GenerateAppOauthOK

type GenerateAppOauthOK struct {
	Payload *models.GenerateAppOAuthResponse
}

GenerateAppOauthOK handles this case with default header values.

An a response object containing the newly create OAuth Client ID / Secret and relevant details pertaining to the OAuth client.

func NewGenerateAppOauthOK

func NewGenerateAppOauthOK() *GenerateAppOauthOK

NewGenerateAppOauthOK creates a GenerateAppOauthOK with default headers values

func (*GenerateAppOauthOK) Error

func (o *GenerateAppOauthOK) Error() string

type GenerateAppOauthParams

type GenerateAppOauthParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string
	/*GenerateAppOAuthRequest*/
	GenerateAppOAuthRequest *models.GenerateAppOAuthRequest

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

GenerateAppOauthParams contains all the parameters to send to the API endpoint for the generate app oauth operation typically these are written to a http.Request

func NewGenerateAppOauthParams

func NewGenerateAppOauthParams() *GenerateAppOauthParams

NewGenerateAppOauthParams creates a new GenerateAppOauthParams object with the default values initialized.

func NewGenerateAppOauthParamsWithContext

func NewGenerateAppOauthParamsWithContext(ctx context.Context) *GenerateAppOauthParams

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

func NewGenerateAppOauthParamsWithHTTPClient

func NewGenerateAppOauthParamsWithHTTPClient(client *http.Client) *GenerateAppOauthParams

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

func NewGenerateAppOauthParamsWithTimeout

func NewGenerateAppOauthParamsWithTimeout(timeout time.Duration) *GenerateAppOauthParams

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

func (*GenerateAppOauthParams) SetAppNameOrID

func (o *GenerateAppOauthParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the generate app oauth params

func (*GenerateAppOauthParams) SetAuthorization

func (o *GenerateAppOauthParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the generate app oauth params

func (*GenerateAppOauthParams) SetContext

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

SetContext adds the context to the generate app oauth params

func (*GenerateAppOauthParams) SetGenerateAppOAuthRequest

func (o *GenerateAppOauthParams) SetGenerateAppOAuthRequest(generateAppOAuthRequest *models.GenerateAppOAuthRequest)

SetGenerateAppOAuthRequest adds the generateAppOAuthRequest to the generate app oauth params

func (*GenerateAppOauthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the generate app oauth params

func (*GenerateAppOauthParams) SetTimeout

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

SetTimeout adds the timeout to the generate app oauth params

func (*GenerateAppOauthParams) WithAppNameOrID

func (o *GenerateAppOauthParams) WithAppNameOrID(appNameOrID string) *GenerateAppOauthParams

WithAppNameOrID adds the appNameOrID to the generate app oauth params

func (*GenerateAppOauthParams) WithAuthorization

func (o *GenerateAppOauthParams) WithAuthorization(authorization string) *GenerateAppOauthParams

WithAuthorization adds the authorization to the generate app oauth params

func (*GenerateAppOauthParams) WithContext

WithContext adds the context to the generate app oauth params

func (*GenerateAppOauthParams) WithGenerateAppOAuthRequest

func (o *GenerateAppOauthParams) WithGenerateAppOAuthRequest(generateAppOAuthRequest *models.GenerateAppOAuthRequest) *GenerateAppOauthParams

WithGenerateAppOAuthRequest adds the generateAppOAuthRequest to the generate app oauth params

func (*GenerateAppOauthParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the generate app oauth params

func (*GenerateAppOauthParams) WithTimeout

WithTimeout adds the timeout to the generate app oauth params

func (*GenerateAppOauthParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GenerateAppOauthReader

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

GenerateAppOauthReader is a Reader for the GenerateAppOauth structure.

func (*GenerateAppOauthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GenerateAppOauthTooManyRequests

type GenerateAppOauthTooManyRequests struct {
	Payload *models.ErrorResponse
}

GenerateAppOauthTooManyRequests handles this case with default header values.

Too many requests

func NewGenerateAppOauthTooManyRequests

func NewGenerateAppOauthTooManyRequests() *GenerateAppOauthTooManyRequests

NewGenerateAppOauthTooManyRequests creates a GenerateAppOauthTooManyRequests with default headers values

func (*GenerateAppOauthTooManyRequests) Error

type GenerateAppOauthUnauthorized

type GenerateAppOauthUnauthorized struct {
}

GenerateAppOauthUnauthorized handles this case with default header values.

Not authenticated

func NewGenerateAppOauthUnauthorized

func NewGenerateAppOauthUnauthorized() *GenerateAppOauthUnauthorized

NewGenerateAppOauthUnauthorized creates a GenerateAppOauthUnauthorized with default headers values

func (*GenerateAppOauthUnauthorized) Error

type GetAppBadRequest

type GetAppBadRequest struct {
	Payload *models.ErrorResponse
}

GetAppBadRequest handles this case with default header values.

Bad request

func NewGetAppBadRequest

func NewGetAppBadRequest() *GetAppBadRequest

NewGetAppBadRequest creates a GetAppBadRequest with default headers values

func (*GetAppBadRequest) Error

func (o *GetAppBadRequest) Error() string

type GetAppDefault

type GetAppDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

GetAppDefault handles this case with default header values.

Unexpected error

func NewGetAppDefault

func NewGetAppDefault(code int) *GetAppDefault

NewGetAppDefault creates a GetAppDefault with default headers values

func (*GetAppDefault) Code

func (o *GetAppDefault) Code() int

Code gets the status code for the get app default response

func (*GetAppDefault) Error

func (o *GetAppDefault) Error() string

type GetAppForbidden

type GetAppForbidden struct {
}

GetAppForbidden handles this case with default header values.

Not authorized

func NewGetAppForbidden

func NewGetAppForbidden() *GetAppForbidden

NewGetAppForbidden creates a GetAppForbidden with default headers values

func (*GetAppForbidden) Error

func (o *GetAppForbidden) Error() string

type GetAppOK

type GetAppOK struct {
	Payload *models.App
}

GetAppOK handles this case with default header values.

An app.

func NewGetAppOK

func NewGetAppOK() *GetAppOK

NewGetAppOK creates a GetAppOK with default headers values

func (*GetAppOK) Error

func (o *GetAppOK) Error() string

type GetAppOauthBadRequest

type GetAppOauthBadRequest struct {
	Payload *models.ErrorResponse
}

GetAppOauthBadRequest handles this case with default header values.

Bad request

func NewGetAppOauthBadRequest

func NewGetAppOauthBadRequest() *GetAppOauthBadRequest

NewGetAppOauthBadRequest creates a GetAppOauthBadRequest with default headers values

func (*GetAppOauthBadRequest) Error

func (o *GetAppOauthBadRequest) Error() string

type GetAppOauthDefault

type GetAppOauthDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

GetAppOauthDefault handles this case with default header values.

Unexpected error

func NewGetAppOauthDefault

func NewGetAppOauthDefault(code int) *GetAppOauthDefault

NewGetAppOauthDefault creates a GetAppOauthDefault with default headers values

func (*GetAppOauthDefault) Code

func (o *GetAppOauthDefault) Code() int

Code gets the status code for the get app oauth default response

func (*GetAppOauthDefault) Error

func (o *GetAppOauthDefault) Error() string

type GetAppOauthForbidden

type GetAppOauthForbidden struct {
}

GetAppOauthForbidden handles this case with default header values.

Not authorized

func NewGetAppOauthForbidden

func NewGetAppOauthForbidden() *GetAppOauthForbidden

NewGetAppOauthForbidden creates a GetAppOauthForbidden with default headers values

func (*GetAppOauthForbidden) Error

func (o *GetAppOauthForbidden) Error() string

type GetAppOauthOK

type GetAppOauthOK struct {
	Payload *models.AppOAuth
}

GetAppOauthOK handles this case with default header values.

An app.

func NewGetAppOauthOK

func NewGetAppOauthOK() *GetAppOauthOK

NewGetAppOauthOK creates a GetAppOauthOK with default headers values

func (*GetAppOauthOK) Error

func (o *GetAppOauthOK) Error() string

type GetAppOauthParams

type GetAppOauthParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string

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

GetAppOauthParams contains all the parameters to send to the API endpoint for the get app oauth operation typically these are written to a http.Request

func NewGetAppOauthParams

func NewGetAppOauthParams() *GetAppOauthParams

NewGetAppOauthParams creates a new GetAppOauthParams object with the default values initialized.

func NewGetAppOauthParamsWithContext

func NewGetAppOauthParamsWithContext(ctx context.Context) *GetAppOauthParams

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

func NewGetAppOauthParamsWithHTTPClient

func NewGetAppOauthParamsWithHTTPClient(client *http.Client) *GetAppOauthParams

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

func NewGetAppOauthParamsWithTimeout

func NewGetAppOauthParamsWithTimeout(timeout time.Duration) *GetAppOauthParams

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

func (*GetAppOauthParams) SetAppNameOrID

func (o *GetAppOauthParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the get app oauth params

func (*GetAppOauthParams) SetAuthorization

func (o *GetAppOauthParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get app oauth params

func (*GetAppOauthParams) SetContext

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

SetContext adds the context to the get app oauth params

func (*GetAppOauthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get app oauth params

func (*GetAppOauthParams) SetTimeout

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

SetTimeout adds the timeout to the get app oauth params

func (*GetAppOauthParams) WithAppNameOrID

func (o *GetAppOauthParams) WithAppNameOrID(appNameOrID string) *GetAppOauthParams

WithAppNameOrID adds the appNameOrID to the get app oauth params

func (*GetAppOauthParams) WithAuthorization

func (o *GetAppOauthParams) WithAuthorization(authorization string) *GetAppOauthParams

WithAuthorization adds the authorization to the get app oauth params

func (*GetAppOauthParams) WithContext

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

WithContext adds the context to the get app oauth params

func (*GetAppOauthParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get app oauth params

func (*GetAppOauthParams) WithTimeout

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

WithTimeout adds the timeout to the get app oauth params

func (*GetAppOauthParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAppOauthReader

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

GetAppOauthReader is a Reader for the GetAppOauth structure.

func (*GetAppOauthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAppOauthTooManyRequests

type GetAppOauthTooManyRequests struct {
	Payload *models.ErrorResponse
}

GetAppOauthTooManyRequests handles this case with default header values.

Too many requests

func NewGetAppOauthTooManyRequests

func NewGetAppOauthTooManyRequests() *GetAppOauthTooManyRequests

NewGetAppOauthTooManyRequests creates a GetAppOauthTooManyRequests with default headers values

func (*GetAppOauthTooManyRequests) Error

type GetAppOauthUnauthorized

type GetAppOauthUnauthorized struct {
}

GetAppOauthUnauthorized handles this case with default header values.

Not authenticated

func NewGetAppOauthUnauthorized

func NewGetAppOauthUnauthorized() *GetAppOauthUnauthorized

NewGetAppOauthUnauthorized creates a GetAppOauthUnauthorized with default headers values

func (*GetAppOauthUnauthorized) Error

func (o *GetAppOauthUnauthorized) Error() string

type GetAppParams

type GetAppParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string

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

GetAppParams contains all the parameters to send to the API endpoint for the get app operation typically these are written to a http.Request

func NewGetAppParams

func NewGetAppParams() *GetAppParams

NewGetAppParams creates a new GetAppParams object with the default values initialized.

func NewGetAppParamsWithContext

func NewGetAppParamsWithContext(ctx context.Context) *GetAppParams

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

func NewGetAppParamsWithHTTPClient

func NewGetAppParamsWithHTTPClient(client *http.Client) *GetAppParams

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

func NewGetAppParamsWithTimeout

func NewGetAppParamsWithTimeout(timeout time.Duration) *GetAppParams

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

func (*GetAppParams) SetAppNameOrID

func (o *GetAppParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the get app params

func (*GetAppParams) SetAuthorization

func (o *GetAppParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get app params

func (*GetAppParams) SetContext

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

SetContext adds the context to the get app params

func (*GetAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get app params

func (*GetAppParams) SetTimeout

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

SetTimeout adds the timeout to the get app params

func (*GetAppParams) WithAppNameOrID

func (o *GetAppParams) WithAppNameOrID(appNameOrID string) *GetAppParams

WithAppNameOrID adds the appNameOrID to the get app params

func (*GetAppParams) WithAuthorization

func (o *GetAppParams) WithAuthorization(authorization string) *GetAppParams

WithAuthorization adds the authorization to the get app params

func (*GetAppParams) WithContext

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

WithContext adds the context to the get app params

func (*GetAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get app params

func (*GetAppParams) WithTimeout

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

WithTimeout adds the timeout to the get app params

func (*GetAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAppReader

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

GetAppReader is a Reader for the GetApp structure.

func (*GetAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAppSettingsBadRequest

type GetAppSettingsBadRequest struct {
	Payload *models.ErrorResponse
}

GetAppSettingsBadRequest handles this case with default header values.

Bad request

func NewGetAppSettingsBadRequest

func NewGetAppSettingsBadRequest() *GetAppSettingsBadRequest

NewGetAppSettingsBadRequest creates a GetAppSettingsBadRequest with default headers values

func (*GetAppSettingsBadRequest) Error

func (o *GetAppSettingsBadRequest) Error() string

type GetAppSettingsDefault

type GetAppSettingsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

GetAppSettingsDefault handles this case with default header values.

Unexpected error

func NewGetAppSettingsDefault

func NewGetAppSettingsDefault(code int) *GetAppSettingsDefault

NewGetAppSettingsDefault creates a GetAppSettingsDefault with default headers values

func (*GetAppSettingsDefault) Code

func (o *GetAppSettingsDefault) Code() int

Code gets the status code for the get app settings default response

func (*GetAppSettingsDefault) Error

func (o *GetAppSettingsDefault) Error() string

type GetAppSettingsForbidden

type GetAppSettingsForbidden struct {
}

GetAppSettingsForbidden handles this case with default header values.

Not authorized

func NewGetAppSettingsForbidden

func NewGetAppSettingsForbidden() *GetAppSettingsForbidden

NewGetAppSettingsForbidden creates a GetAppSettingsForbidden with default headers values

func (*GetAppSettingsForbidden) Error

func (o *GetAppSettingsForbidden) Error() string

type GetAppSettingsOK

type GetAppSettingsOK struct {
	Payload *models.GetAppSettingsResponse
}

GetAppSettingsOK handles this case with default header values.

An app settings model.

func NewGetAppSettingsOK

func NewGetAppSettingsOK() *GetAppSettingsOK

NewGetAppSettingsOK creates a GetAppSettingsOK with default headers values

func (*GetAppSettingsOK) Error

func (o *GetAppSettingsOK) Error() string

type GetAppSettingsParams

type GetAppSettingsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string

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

GetAppSettingsParams contains all the parameters to send to the API endpoint for the get app settings operation typically these are written to a http.Request

func NewGetAppSettingsParams

func NewGetAppSettingsParams() *GetAppSettingsParams

NewGetAppSettingsParams creates a new GetAppSettingsParams object with the default values initialized.

func NewGetAppSettingsParamsWithContext

func NewGetAppSettingsParamsWithContext(ctx context.Context) *GetAppSettingsParams

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

func NewGetAppSettingsParamsWithHTTPClient

func NewGetAppSettingsParamsWithHTTPClient(client *http.Client) *GetAppSettingsParams

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

func NewGetAppSettingsParamsWithTimeout

func NewGetAppSettingsParamsWithTimeout(timeout time.Duration) *GetAppSettingsParams

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

func (*GetAppSettingsParams) SetAppNameOrID

func (o *GetAppSettingsParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the get app settings params

func (*GetAppSettingsParams) SetAuthorization

func (o *GetAppSettingsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get app settings params

func (*GetAppSettingsParams) SetContext

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

SetContext adds the context to the get app settings params

func (*GetAppSettingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get app settings params

func (*GetAppSettingsParams) SetTimeout

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

SetTimeout adds the timeout to the get app settings params

func (*GetAppSettingsParams) WithAppNameOrID

func (o *GetAppSettingsParams) WithAppNameOrID(appNameOrID string) *GetAppSettingsParams

WithAppNameOrID adds the appNameOrID to the get app settings params

func (*GetAppSettingsParams) WithAuthorization

func (o *GetAppSettingsParams) WithAuthorization(authorization string) *GetAppSettingsParams

WithAuthorization adds the authorization to the get app settings params

func (*GetAppSettingsParams) WithContext

WithContext adds the context to the get app settings params

func (*GetAppSettingsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get app settings params

func (*GetAppSettingsParams) WithTimeout

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

WithTimeout adds the timeout to the get app settings params

func (*GetAppSettingsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAppSettingsReader

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

GetAppSettingsReader is a Reader for the GetAppSettings structure.

func (*GetAppSettingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAppSettingsTooManyRequests

type GetAppSettingsTooManyRequests struct {
	Payload *models.ErrorResponse
}

GetAppSettingsTooManyRequests handles this case with default header values.

Too many requests

func NewGetAppSettingsTooManyRequests

func NewGetAppSettingsTooManyRequests() *GetAppSettingsTooManyRequests

NewGetAppSettingsTooManyRequests creates a GetAppSettingsTooManyRequests with default headers values

func (*GetAppSettingsTooManyRequests) Error

type GetAppSettingsUnauthorized

type GetAppSettingsUnauthorized struct {
}

GetAppSettingsUnauthorized handles this case with default header values.

Not authenticated

func NewGetAppSettingsUnauthorized

func NewGetAppSettingsUnauthorized() *GetAppSettingsUnauthorized

NewGetAppSettingsUnauthorized creates a GetAppSettingsUnauthorized with default headers values

func (*GetAppSettingsUnauthorized) Error

type GetAppTagsBadRequest

type GetAppTagsBadRequest struct {
	Payload *models.ErrorResponse
}

GetAppTagsBadRequest handles this case with default header values.

Bad request

func NewGetAppTagsBadRequest

func NewGetAppTagsBadRequest() *GetAppTagsBadRequest

NewGetAppTagsBadRequest creates a GetAppTagsBadRequest with default headers values

func (*GetAppTagsBadRequest) Error

func (o *GetAppTagsBadRequest) Error() string

type GetAppTagsDefault

type GetAppTagsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

GetAppTagsDefault handles this case with default header values.

Unexpected error

func NewGetAppTagsDefault

func NewGetAppTagsDefault(code int) *GetAppTagsDefault

NewGetAppTagsDefault creates a GetAppTagsDefault with default headers values

func (*GetAppTagsDefault) Code

func (o *GetAppTagsDefault) Code() int

Code gets the status code for the get app tags default response

func (*GetAppTagsDefault) Error

func (o *GetAppTagsDefault) Error() string

type GetAppTagsForbidden

type GetAppTagsForbidden struct {
}

GetAppTagsForbidden handles this case with default header values.

Forbidden

func NewGetAppTagsForbidden

func NewGetAppTagsForbidden() *GetAppTagsForbidden

NewGetAppTagsForbidden creates a GetAppTagsForbidden with default headers values

func (*GetAppTagsForbidden) Error

func (o *GetAppTagsForbidden) Error() string

type GetAppTagsOK

type GetAppTagsOK struct {
	Payload *models.GetTagsResponse
}

GetAppTagsOK handles this case with default header values.

A response containing an App's tags.

func NewGetAppTagsOK

func NewGetAppTagsOK() *GetAppTagsOK

NewGetAppTagsOK creates a GetAppTagsOK with default headers values

func (*GetAppTagsOK) Error

func (o *GetAppTagsOK) Error() string

type GetAppTagsParams

type GetAppTagsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string

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

GetAppTagsParams contains all the parameters to send to the API endpoint for the get app tags operation typically these are written to a http.Request

func NewGetAppTagsParams

func NewGetAppTagsParams() *GetAppTagsParams

NewGetAppTagsParams creates a new GetAppTagsParams object with the default values initialized.

func NewGetAppTagsParamsWithContext

func NewGetAppTagsParamsWithContext(ctx context.Context) *GetAppTagsParams

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

func NewGetAppTagsParamsWithHTTPClient

func NewGetAppTagsParamsWithHTTPClient(client *http.Client) *GetAppTagsParams

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

func NewGetAppTagsParamsWithTimeout

func NewGetAppTagsParamsWithTimeout(timeout time.Duration) *GetAppTagsParams

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

func (*GetAppTagsParams) SetAppNameOrID

func (o *GetAppTagsParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the get app tags params

func (*GetAppTagsParams) SetAuthorization

func (o *GetAppTagsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the get app tags params

func (*GetAppTagsParams) SetContext

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

SetContext adds the context to the get app tags params

func (*GetAppTagsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get app tags params

func (*GetAppTagsParams) SetTimeout

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

SetTimeout adds the timeout to the get app tags params

func (*GetAppTagsParams) WithAppNameOrID

func (o *GetAppTagsParams) WithAppNameOrID(appNameOrID string) *GetAppTagsParams

WithAppNameOrID adds the appNameOrID to the get app tags params

func (*GetAppTagsParams) WithAuthorization

func (o *GetAppTagsParams) WithAuthorization(authorization string) *GetAppTagsParams

WithAuthorization adds the authorization to the get app tags params

func (*GetAppTagsParams) WithContext

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

WithContext adds the context to the get app tags params

func (*GetAppTagsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get app tags params

func (*GetAppTagsParams) WithTimeout

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

WithTimeout adds the timeout to the get app tags params

func (*GetAppTagsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAppTagsReader

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

GetAppTagsReader is a Reader for the GetAppTags structure.

func (*GetAppTagsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAppTagsTooManyRequests

type GetAppTagsTooManyRequests struct {
	Payload *models.ErrorResponse
}

GetAppTagsTooManyRequests handles this case with default header values.

Too many requests

func NewGetAppTagsTooManyRequests

func NewGetAppTagsTooManyRequests() *GetAppTagsTooManyRequests

NewGetAppTagsTooManyRequests creates a GetAppTagsTooManyRequests with default headers values

func (*GetAppTagsTooManyRequests) Error

func (o *GetAppTagsTooManyRequests) Error() string

type GetAppTagsUnauthorized

type GetAppTagsUnauthorized struct {
}

GetAppTagsUnauthorized handles this case with default header values.

Unauthorized

func NewGetAppTagsUnauthorized

func NewGetAppTagsUnauthorized() *GetAppTagsUnauthorized

NewGetAppTagsUnauthorized creates a GetAppTagsUnauthorized with default headers values

func (*GetAppTagsUnauthorized) Error

func (o *GetAppTagsUnauthorized) Error() string

type GetAppTagsUnprocessableEntity

type GetAppTagsUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

GetAppTagsUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewGetAppTagsUnprocessableEntity

func NewGetAppTagsUnprocessableEntity() *GetAppTagsUnprocessableEntity

NewGetAppTagsUnprocessableEntity creates a GetAppTagsUnprocessableEntity with default headers values

func (*GetAppTagsUnprocessableEntity) Error

type GetAppTooManyRequests

type GetAppTooManyRequests struct {
	Payload *models.ErrorResponse
}

GetAppTooManyRequests handles this case with default header values.

Too many requests

func NewGetAppTooManyRequests

func NewGetAppTooManyRequests() *GetAppTooManyRequests

NewGetAppTooManyRequests creates a GetAppTooManyRequests with default headers values

func (*GetAppTooManyRequests) Error

func (o *GetAppTooManyRequests) Error() string

type GetAppUnauthorized

type GetAppUnauthorized struct {
}

GetAppUnauthorized handles this case with default header values.

Not authenticated

func NewGetAppUnauthorized

func NewGetAppUnauthorized() *GetAppUnauthorized

NewGetAppUnauthorized creates a GetAppUnauthorized with default headers values

func (*GetAppUnauthorized) Error

func (o *GetAppUnauthorized) Error() string

type ListAppsDefault

type ListAppsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

ListAppsDefault handles this case with default header values.

Unexpected error

func NewListAppsDefault

func NewListAppsDefault(code int) *ListAppsDefault

NewListAppsDefault creates a ListAppsDefault with default headers values

func (*ListAppsDefault) Code

func (o *ListAppsDefault) Code() int

Code gets the status code for the list apps default response

func (*ListAppsDefault) Error

func (o *ListAppsDefault) Error() string

type ListAppsForbidden

type ListAppsForbidden struct {
}

ListAppsForbidden handles this case with default header values.

Not authorized

func NewListAppsForbidden

func NewListAppsForbidden() *ListAppsForbidden

NewListAppsForbidden creates a ListAppsForbidden with default headers values

func (*ListAppsForbidden) Error

func (o *ListAppsForbidden) Error() string

type ListAppsOK

type ListAppsOK struct {
	Payload *models.PagedApps
}

ListAppsOK handles this case with default header values.

A paginated list of apps.

func NewListAppsOK

func NewListAppsOK() *ListAppsOK

NewListAppsOK creates a ListAppsOK with default headers values

func (*ListAppsOK) Error

func (o *ListAppsOK) Error() string

type ListAppsParams

type ListAppsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppType
	  The App Type of the application.

	*/
	AppType string

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

ListAppsParams contains all the parameters to send to the API endpoint for the list apps operation typically these are written to a http.Request

func NewListAppsParams

func NewListAppsParams() *ListAppsParams

NewListAppsParams creates a new ListAppsParams object with the default values initialized.

func NewListAppsParamsWithContext

func NewListAppsParamsWithContext(ctx context.Context) *ListAppsParams

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

func NewListAppsParamsWithHTTPClient

func NewListAppsParamsWithHTTPClient(client *http.Client) *ListAppsParams

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

func NewListAppsParamsWithTimeout

func NewListAppsParamsWithTimeout(timeout time.Duration) *ListAppsParams

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

func (*ListAppsParams) SetAppType

func (o *ListAppsParams) SetAppType(appType string)

SetAppType adds the appType to the list apps params

func (*ListAppsParams) SetAuthorization

func (o *ListAppsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the list apps params

func (*ListAppsParams) SetContext

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

SetContext adds the context to the list apps params

func (*ListAppsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list apps params

func (*ListAppsParams) SetTimeout

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

SetTimeout adds the timeout to the list apps params

func (*ListAppsParams) WithAppType

func (o *ListAppsParams) WithAppType(appType string) *ListAppsParams

WithAppType adds the appType to the list apps params

func (*ListAppsParams) WithAuthorization

func (o *ListAppsParams) WithAuthorization(authorization string) *ListAppsParams

WithAuthorization adds the authorization to the list apps params

func (*ListAppsParams) WithContext

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

WithContext adds the context to the list apps params

func (*ListAppsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list apps params

func (*ListAppsParams) WithTimeout

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

WithTimeout adds the timeout to the list apps params

func (*ListAppsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListAppsReader

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

ListAppsReader is a Reader for the ListApps structure.

func (*ListAppsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListAppsTooManyRequests

type ListAppsTooManyRequests struct {
	Payload *models.ErrorResponse
}

ListAppsTooManyRequests handles this case with default header values.

Too many requests

func NewListAppsTooManyRequests

func NewListAppsTooManyRequests() *ListAppsTooManyRequests

NewListAppsTooManyRequests creates a ListAppsTooManyRequests with default headers values

func (*ListAppsTooManyRequests) Error

func (o *ListAppsTooManyRequests) Error() string

type ListAppsUnauthorized

type ListAppsUnauthorized struct {
}

ListAppsUnauthorized handles this case with default header values.

Not authenticated

func NewListAppsUnauthorized

func NewListAppsUnauthorized() *ListAppsUnauthorized

NewListAppsUnauthorized creates a ListAppsUnauthorized with default headers values

func (*ListAppsUnauthorized) Error

func (o *ListAppsUnauthorized) Error() string

type PatchAppTagsBadRequest

type PatchAppTagsBadRequest struct {
	Payload *models.ErrorResponse
}

PatchAppTagsBadRequest handles this case with default header values.

Bad request

func NewPatchAppTagsBadRequest

func NewPatchAppTagsBadRequest() *PatchAppTagsBadRequest

NewPatchAppTagsBadRequest creates a PatchAppTagsBadRequest with default headers values

func (*PatchAppTagsBadRequest) Error

func (o *PatchAppTagsBadRequest) Error() string

type PatchAppTagsDefault

type PatchAppTagsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

PatchAppTagsDefault handles this case with default header values.

Unexpected error

func NewPatchAppTagsDefault

func NewPatchAppTagsDefault(code int) *PatchAppTagsDefault

NewPatchAppTagsDefault creates a PatchAppTagsDefault with default headers values

func (*PatchAppTagsDefault) Code

func (o *PatchAppTagsDefault) Code() int

Code gets the status code for the patch app tags default response

func (*PatchAppTagsDefault) Error

func (o *PatchAppTagsDefault) Error() string

type PatchAppTagsForbidden

type PatchAppTagsForbidden struct {
}

PatchAppTagsForbidden handles this case with default header values.

Forbidden

func NewPatchAppTagsForbidden

func NewPatchAppTagsForbidden() *PatchAppTagsForbidden

NewPatchAppTagsForbidden creates a PatchAppTagsForbidden with default headers values

func (*PatchAppTagsForbidden) Error

func (o *PatchAppTagsForbidden) Error() string

type PatchAppTagsOK

type PatchAppTagsOK struct {
	Payload *models.PatchTagsResponse
}

PatchAppTagsOK handles this case with default header values.

A response containing an App's tags.

func NewPatchAppTagsOK

func NewPatchAppTagsOK() *PatchAppTagsOK

NewPatchAppTagsOK creates a PatchAppTagsOK with default headers values

func (*PatchAppTagsOK) Error

func (o *PatchAppTagsOK) Error() string

type PatchAppTagsParams

type PatchAppTagsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string
	/*PatchAppTagsRequest*/
	PatchAppTagsRequest *models.PatchTagsRequest

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

PatchAppTagsParams contains all the parameters to send to the API endpoint for the patch app tags operation typically these are written to a http.Request

func NewPatchAppTagsParams

func NewPatchAppTagsParams() *PatchAppTagsParams

NewPatchAppTagsParams creates a new PatchAppTagsParams object with the default values initialized.

func NewPatchAppTagsParamsWithContext

func NewPatchAppTagsParamsWithContext(ctx context.Context) *PatchAppTagsParams

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

func NewPatchAppTagsParamsWithHTTPClient

func NewPatchAppTagsParamsWithHTTPClient(client *http.Client) *PatchAppTagsParams

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

func NewPatchAppTagsParamsWithTimeout

func NewPatchAppTagsParamsWithTimeout(timeout time.Duration) *PatchAppTagsParams

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

func (*PatchAppTagsParams) SetAppNameOrID

func (o *PatchAppTagsParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the patch app tags params

func (*PatchAppTagsParams) SetAuthorization

func (o *PatchAppTagsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the patch app tags params

func (*PatchAppTagsParams) SetContext

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

SetContext adds the context to the patch app tags params

func (*PatchAppTagsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch app tags params

func (*PatchAppTagsParams) SetPatchAppTagsRequest

func (o *PatchAppTagsParams) SetPatchAppTagsRequest(patchAppTagsRequest *models.PatchTagsRequest)

SetPatchAppTagsRequest adds the patchAppTagsRequest to the patch app tags params

func (*PatchAppTagsParams) SetTimeout

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

SetTimeout adds the timeout to the patch app tags params

func (*PatchAppTagsParams) WithAppNameOrID

func (o *PatchAppTagsParams) WithAppNameOrID(appNameOrID string) *PatchAppTagsParams

WithAppNameOrID adds the appNameOrID to the patch app tags params

func (*PatchAppTagsParams) WithAuthorization

func (o *PatchAppTagsParams) WithAuthorization(authorization string) *PatchAppTagsParams

WithAuthorization adds the authorization to the patch app tags params

func (*PatchAppTagsParams) WithContext

WithContext adds the context to the patch app tags params

func (*PatchAppTagsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the patch app tags params

func (*PatchAppTagsParams) WithPatchAppTagsRequest

func (o *PatchAppTagsParams) WithPatchAppTagsRequest(patchAppTagsRequest *models.PatchTagsRequest) *PatchAppTagsParams

WithPatchAppTagsRequest adds the patchAppTagsRequest to the patch app tags params

func (*PatchAppTagsParams) WithTimeout

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

WithTimeout adds the timeout to the patch app tags params

func (*PatchAppTagsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PatchAppTagsReader

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

PatchAppTagsReader is a Reader for the PatchAppTags structure.

func (*PatchAppTagsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchAppTagsTooManyRequests

type PatchAppTagsTooManyRequests struct {
	Payload *models.ErrorResponse
}

PatchAppTagsTooManyRequests handles this case with default header values.

Too many requests

func NewPatchAppTagsTooManyRequests

func NewPatchAppTagsTooManyRequests() *PatchAppTagsTooManyRequests

NewPatchAppTagsTooManyRequests creates a PatchAppTagsTooManyRequests with default headers values

func (*PatchAppTagsTooManyRequests) Error

type PatchAppTagsUnauthorized

type PatchAppTagsUnauthorized struct {
}

PatchAppTagsUnauthorized handles this case with default header values.

Unauthorized

func NewPatchAppTagsUnauthorized

func NewPatchAppTagsUnauthorized() *PatchAppTagsUnauthorized

NewPatchAppTagsUnauthorized creates a PatchAppTagsUnauthorized with default headers values

func (*PatchAppTagsUnauthorized) Error

func (o *PatchAppTagsUnauthorized) Error() string

type PatchAppTagsUnprocessableEntity

type PatchAppTagsUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

PatchAppTagsUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewPatchAppTagsUnprocessableEntity

func NewPatchAppTagsUnprocessableEntity() *PatchAppTagsUnprocessableEntity

NewPatchAppTagsUnprocessableEntity creates a PatchAppTagsUnprocessableEntity with default headers values

func (*PatchAppTagsUnprocessableEntity) Error

type UpdateAppBadRequest

type UpdateAppBadRequest struct {
	Payload *models.ErrorResponse
}

UpdateAppBadRequest handles this case with default header values.

Bad request

func NewUpdateAppBadRequest

func NewUpdateAppBadRequest() *UpdateAppBadRequest

NewUpdateAppBadRequest creates a UpdateAppBadRequest with default headers values

func (*UpdateAppBadRequest) Error

func (o *UpdateAppBadRequest) Error() string

type UpdateAppDefault

type UpdateAppDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

UpdateAppDefault handles this case with default header values.

Unexpected error

func NewUpdateAppDefault

func NewUpdateAppDefault(code int) *UpdateAppDefault

NewUpdateAppDefault creates a UpdateAppDefault with default headers values

func (*UpdateAppDefault) Code

func (o *UpdateAppDefault) Code() int

Code gets the status code for the update app default response

func (*UpdateAppDefault) Error

func (o *UpdateAppDefault) Error() string

type UpdateAppForbidden

type UpdateAppForbidden struct {
}

UpdateAppForbidden handles this case with default header values.

Not authorized

func NewUpdateAppForbidden

func NewUpdateAppForbidden() *UpdateAppForbidden

NewUpdateAppForbidden creates a UpdateAppForbidden with default headers values

func (*UpdateAppForbidden) Error

func (o *UpdateAppForbidden) Error() string

type UpdateAppOK

type UpdateAppOK struct {
	Payload *models.App
}

UpdateAppOK handles this case with default header values.

An app model.

func NewUpdateAppOK

func NewUpdateAppOK() *UpdateAppOK

NewUpdateAppOK creates a UpdateAppOK with default headers values

func (*UpdateAppOK) Error

func (o *UpdateAppOK) Error() string

type UpdateAppOauthBadRequest

type UpdateAppOauthBadRequest struct {
	Payload *models.ErrorResponse
}

UpdateAppOauthBadRequest handles this case with default header values.

Bad request

func NewUpdateAppOauthBadRequest

func NewUpdateAppOauthBadRequest() *UpdateAppOauthBadRequest

NewUpdateAppOauthBadRequest creates a UpdateAppOauthBadRequest with default headers values

func (*UpdateAppOauthBadRequest) Error

func (o *UpdateAppOauthBadRequest) Error() string

type UpdateAppOauthDefault

type UpdateAppOauthDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

UpdateAppOauthDefault handles this case with default header values.

Unexpected error

func NewUpdateAppOauthDefault

func NewUpdateAppOauthDefault(code int) *UpdateAppOauthDefault

NewUpdateAppOauthDefault creates a UpdateAppOauthDefault with default headers values

func (*UpdateAppOauthDefault) Code

func (o *UpdateAppOauthDefault) Code() int

Code gets the status code for the update app oauth default response

func (*UpdateAppOauthDefault) Error

func (o *UpdateAppOauthDefault) Error() string

type UpdateAppOauthForbidden

type UpdateAppOauthForbidden struct {
}

UpdateAppOauthForbidden handles this case with default header values.

Not authorized

func NewUpdateAppOauthForbidden

func NewUpdateAppOauthForbidden() *UpdateAppOauthForbidden

NewUpdateAppOauthForbidden creates a UpdateAppOauthForbidden with default headers values

func (*UpdateAppOauthForbidden) Error

func (o *UpdateAppOauthForbidden) Error() string

type UpdateAppOauthOK

type UpdateAppOauthOK struct {
	Payload *models.AppOAuth
}

UpdateAppOauthOK handles this case with default header values.

An app's oauth settings model.

func NewUpdateAppOauthOK

func NewUpdateAppOauthOK() *UpdateAppOauthOK

NewUpdateAppOauthOK creates a UpdateAppOauthOK with default headers values

func (*UpdateAppOauthOK) Error

func (o *UpdateAppOauthOK) Error() string

type UpdateAppOauthParams

type UpdateAppOauthParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string
	/*UpdateAppOAuthRequest*/
	UpdateAppOAuthRequest *models.UpdateAppOAuthRequest

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

UpdateAppOauthParams contains all the parameters to send to the API endpoint for the update app oauth operation typically these are written to a http.Request

func NewUpdateAppOauthParams

func NewUpdateAppOauthParams() *UpdateAppOauthParams

NewUpdateAppOauthParams creates a new UpdateAppOauthParams object with the default values initialized.

func NewUpdateAppOauthParamsWithContext

func NewUpdateAppOauthParamsWithContext(ctx context.Context) *UpdateAppOauthParams

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

func NewUpdateAppOauthParamsWithHTTPClient

func NewUpdateAppOauthParamsWithHTTPClient(client *http.Client) *UpdateAppOauthParams

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

func NewUpdateAppOauthParamsWithTimeout

func NewUpdateAppOauthParamsWithTimeout(timeout time.Duration) *UpdateAppOauthParams

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

func (*UpdateAppOauthParams) SetAppNameOrID

func (o *UpdateAppOauthParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the update app oauth params

func (*UpdateAppOauthParams) SetAuthorization

func (o *UpdateAppOauthParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update app oauth params

func (*UpdateAppOauthParams) SetContext

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

SetContext adds the context to the update app oauth params

func (*UpdateAppOauthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update app oauth params

func (*UpdateAppOauthParams) SetTimeout

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

SetTimeout adds the timeout to the update app oauth params

func (*UpdateAppOauthParams) SetUpdateAppOAuthRequest

func (o *UpdateAppOauthParams) SetUpdateAppOAuthRequest(updateAppOAuthRequest *models.UpdateAppOAuthRequest)

SetUpdateAppOAuthRequest adds the updateAppOAuthRequest to the update app oauth params

func (*UpdateAppOauthParams) WithAppNameOrID

func (o *UpdateAppOauthParams) WithAppNameOrID(appNameOrID string) *UpdateAppOauthParams

WithAppNameOrID adds the appNameOrID to the update app oauth params

func (*UpdateAppOauthParams) WithAuthorization

func (o *UpdateAppOauthParams) WithAuthorization(authorization string) *UpdateAppOauthParams

WithAuthorization adds the authorization to the update app oauth params

func (*UpdateAppOauthParams) WithContext

WithContext adds the context to the update app oauth params

func (*UpdateAppOauthParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update app oauth params

func (*UpdateAppOauthParams) WithTimeout

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

WithTimeout adds the timeout to the update app oauth params

func (*UpdateAppOauthParams) WithUpdateAppOAuthRequest

func (o *UpdateAppOauthParams) WithUpdateAppOAuthRequest(updateAppOAuthRequest *models.UpdateAppOAuthRequest) *UpdateAppOauthParams

WithUpdateAppOAuthRequest adds the updateAppOAuthRequest to the update app oauth params

func (*UpdateAppOauthParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateAppOauthReader

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

UpdateAppOauthReader is a Reader for the UpdateAppOauth structure.

func (*UpdateAppOauthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAppOauthTooManyRequests

type UpdateAppOauthTooManyRequests struct {
	Payload *models.ErrorResponse
}

UpdateAppOauthTooManyRequests handles this case with default header values.

Too many requests

func NewUpdateAppOauthTooManyRequests

func NewUpdateAppOauthTooManyRequests() *UpdateAppOauthTooManyRequests

NewUpdateAppOauthTooManyRequests creates a UpdateAppOauthTooManyRequests with default headers values

func (*UpdateAppOauthTooManyRequests) Error

type UpdateAppOauthUnauthorized

type UpdateAppOauthUnauthorized struct {
}

UpdateAppOauthUnauthorized handles this case with default header values.

Not authenticated

func NewUpdateAppOauthUnauthorized

func NewUpdateAppOauthUnauthorized() *UpdateAppOauthUnauthorized

NewUpdateAppOauthUnauthorized creates a UpdateAppOauthUnauthorized with default headers values

func (*UpdateAppOauthUnauthorized) Error

type UpdateAppOauthUnprocessableEntity

type UpdateAppOauthUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

UpdateAppOauthUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewUpdateAppOauthUnprocessableEntity

func NewUpdateAppOauthUnprocessableEntity() *UpdateAppOauthUnprocessableEntity

NewUpdateAppOauthUnprocessableEntity creates a UpdateAppOauthUnprocessableEntity with default headers values

func (*UpdateAppOauthUnprocessableEntity) Error

type UpdateAppParams

type UpdateAppParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string
	/*CreateOrUpdateAppRequest*/
	CreateOrUpdateAppRequest *models.CreateOrUpdateAppRequest

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

UpdateAppParams contains all the parameters to send to the API endpoint for the update app operation typically these are written to a http.Request

func NewUpdateAppParams

func NewUpdateAppParams() *UpdateAppParams

NewUpdateAppParams creates a new UpdateAppParams object with the default values initialized.

func NewUpdateAppParamsWithContext

func NewUpdateAppParamsWithContext(ctx context.Context) *UpdateAppParams

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

func NewUpdateAppParamsWithHTTPClient

func NewUpdateAppParamsWithHTTPClient(client *http.Client) *UpdateAppParams

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

func NewUpdateAppParamsWithTimeout

func NewUpdateAppParamsWithTimeout(timeout time.Duration) *UpdateAppParams

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

func (*UpdateAppParams) SetAppNameOrID

func (o *UpdateAppParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the update app params

func (*UpdateAppParams) SetAuthorization

func (o *UpdateAppParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update app params

func (*UpdateAppParams) SetContext

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

SetContext adds the context to the update app params

func (*UpdateAppParams) SetCreateOrUpdateAppRequest

func (o *UpdateAppParams) SetCreateOrUpdateAppRequest(createOrUpdateAppRequest *models.CreateOrUpdateAppRequest)

SetCreateOrUpdateAppRequest adds the createOrUpdateAppRequest to the update app params

func (*UpdateAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update app params

func (*UpdateAppParams) SetTimeout

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

SetTimeout adds the timeout to the update app params

func (*UpdateAppParams) WithAppNameOrID

func (o *UpdateAppParams) WithAppNameOrID(appNameOrID string) *UpdateAppParams

WithAppNameOrID adds the appNameOrID to the update app params

func (*UpdateAppParams) WithAuthorization

func (o *UpdateAppParams) WithAuthorization(authorization string) *UpdateAppParams

WithAuthorization adds the authorization to the update app params

func (*UpdateAppParams) WithContext

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

WithContext adds the context to the update app params

func (*UpdateAppParams) WithCreateOrUpdateAppRequest

func (o *UpdateAppParams) WithCreateOrUpdateAppRequest(createOrUpdateAppRequest *models.CreateOrUpdateAppRequest) *UpdateAppParams

WithCreateOrUpdateAppRequest adds the createOrUpdateAppRequest to the update app params

func (*UpdateAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update app params

func (*UpdateAppParams) WithTimeout

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

WithTimeout adds the timeout to the update app params

func (*UpdateAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateAppReader

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

UpdateAppReader is a Reader for the UpdateApp structure.

func (*UpdateAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAppSettingsBadRequest

type UpdateAppSettingsBadRequest struct {
	Payload *models.ErrorResponse
}

UpdateAppSettingsBadRequest handles this case with default header values.

Bad request

func NewUpdateAppSettingsBadRequest

func NewUpdateAppSettingsBadRequest() *UpdateAppSettingsBadRequest

NewUpdateAppSettingsBadRequest creates a UpdateAppSettingsBadRequest with default headers values

func (*UpdateAppSettingsBadRequest) Error

type UpdateAppSettingsDefault

type UpdateAppSettingsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

UpdateAppSettingsDefault handles this case with default header values.

Unexpected error

func NewUpdateAppSettingsDefault

func NewUpdateAppSettingsDefault(code int) *UpdateAppSettingsDefault

NewUpdateAppSettingsDefault creates a UpdateAppSettingsDefault with default headers values

func (*UpdateAppSettingsDefault) Code

func (o *UpdateAppSettingsDefault) Code() int

Code gets the status code for the update app settings default response

func (*UpdateAppSettingsDefault) Error

func (o *UpdateAppSettingsDefault) Error() string

type UpdateAppSettingsForbidden

type UpdateAppSettingsForbidden struct {
}

UpdateAppSettingsForbidden handles this case with default header values.

Not authorized

func NewUpdateAppSettingsForbidden

func NewUpdateAppSettingsForbidden() *UpdateAppSettingsForbidden

NewUpdateAppSettingsForbidden creates a UpdateAppSettingsForbidden with default headers values

func (*UpdateAppSettingsForbidden) Error

type UpdateAppSettingsOK

type UpdateAppSettingsOK struct {
	Payload *models.UpdateAppSettingsResponse
}

UpdateAppSettingsOK handles this case with default header values.

An app settings model.

func NewUpdateAppSettingsOK

func NewUpdateAppSettingsOK() *UpdateAppSettingsOK

NewUpdateAppSettingsOK creates a UpdateAppSettingsOK with default headers values

func (*UpdateAppSettingsOK) Error

func (o *UpdateAppSettingsOK) Error() string

type UpdateAppSettingsParams

type UpdateAppSettingsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId  field of an app.

	*/
	AppNameOrID string
	/*UpdateAppSettingsRequest*/
	UpdateAppSettingsRequest *models.UpdateAppSettingsRequest

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

UpdateAppSettingsParams contains all the parameters to send to the API endpoint for the update app settings operation typically these are written to a http.Request

func NewUpdateAppSettingsParams

func NewUpdateAppSettingsParams() *UpdateAppSettingsParams

NewUpdateAppSettingsParams creates a new UpdateAppSettingsParams object with the default values initialized.

func NewUpdateAppSettingsParamsWithContext

func NewUpdateAppSettingsParamsWithContext(ctx context.Context) *UpdateAppSettingsParams

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

func NewUpdateAppSettingsParamsWithHTTPClient

func NewUpdateAppSettingsParamsWithHTTPClient(client *http.Client) *UpdateAppSettingsParams

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

func NewUpdateAppSettingsParamsWithTimeout

func NewUpdateAppSettingsParamsWithTimeout(timeout time.Duration) *UpdateAppSettingsParams

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

func (*UpdateAppSettingsParams) SetAppNameOrID

func (o *UpdateAppSettingsParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the update app settings params

func (*UpdateAppSettingsParams) SetAuthorization

func (o *UpdateAppSettingsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update app settings params

func (*UpdateAppSettingsParams) SetContext

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

SetContext adds the context to the update app settings params

func (*UpdateAppSettingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update app settings params

func (*UpdateAppSettingsParams) SetTimeout

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

SetTimeout adds the timeout to the update app settings params

func (*UpdateAppSettingsParams) SetUpdateAppSettingsRequest

func (o *UpdateAppSettingsParams) SetUpdateAppSettingsRequest(updateAppSettingsRequest *models.UpdateAppSettingsRequest)

SetUpdateAppSettingsRequest adds the updateAppSettingsRequest to the update app settings params

func (*UpdateAppSettingsParams) WithAppNameOrID

func (o *UpdateAppSettingsParams) WithAppNameOrID(appNameOrID string) *UpdateAppSettingsParams

WithAppNameOrID adds the appNameOrID to the update app settings params

func (*UpdateAppSettingsParams) WithAuthorization

func (o *UpdateAppSettingsParams) WithAuthorization(authorization string) *UpdateAppSettingsParams

WithAuthorization adds the authorization to the update app settings params

func (*UpdateAppSettingsParams) WithContext

WithContext adds the context to the update app settings params

func (*UpdateAppSettingsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update app settings params

func (*UpdateAppSettingsParams) WithTimeout

WithTimeout adds the timeout to the update app settings params

func (*UpdateAppSettingsParams) WithUpdateAppSettingsRequest

func (o *UpdateAppSettingsParams) WithUpdateAppSettingsRequest(updateAppSettingsRequest *models.UpdateAppSettingsRequest) *UpdateAppSettingsParams

WithUpdateAppSettingsRequest adds the updateAppSettingsRequest to the update app settings params

func (*UpdateAppSettingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateAppSettingsReader

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

UpdateAppSettingsReader is a Reader for the UpdateAppSettings structure.

func (*UpdateAppSettingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAppSettingsTooManyRequests

type UpdateAppSettingsTooManyRequests struct {
	Payload *models.ErrorResponse
}

UpdateAppSettingsTooManyRequests handles this case with default header values.

Too many requests

func NewUpdateAppSettingsTooManyRequests

func NewUpdateAppSettingsTooManyRequests() *UpdateAppSettingsTooManyRequests

NewUpdateAppSettingsTooManyRequests creates a UpdateAppSettingsTooManyRequests with default headers values

func (*UpdateAppSettingsTooManyRequests) Error

type UpdateAppSettingsUnauthorized

type UpdateAppSettingsUnauthorized struct {
}

UpdateAppSettingsUnauthorized handles this case with default header values.

Not authenticated

func NewUpdateAppSettingsUnauthorized

func NewUpdateAppSettingsUnauthorized() *UpdateAppSettingsUnauthorized

NewUpdateAppSettingsUnauthorized creates a UpdateAppSettingsUnauthorized with default headers values

func (*UpdateAppSettingsUnauthorized) Error

type UpdateAppSettingsUnprocessableEntity

type UpdateAppSettingsUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

UpdateAppSettingsUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewUpdateAppSettingsUnprocessableEntity

func NewUpdateAppSettingsUnprocessableEntity() *UpdateAppSettingsUnprocessableEntity

NewUpdateAppSettingsUnprocessableEntity creates a UpdateAppSettingsUnprocessableEntity with default headers values

func (*UpdateAppSettingsUnprocessableEntity) Error

type UpdateAppTagsBadRequest

type UpdateAppTagsBadRequest struct {
	Payload *models.ErrorResponse
}

UpdateAppTagsBadRequest handles this case with default header values.

Bad request

func NewUpdateAppTagsBadRequest

func NewUpdateAppTagsBadRequest() *UpdateAppTagsBadRequest

NewUpdateAppTagsBadRequest creates a UpdateAppTagsBadRequest with default headers values

func (*UpdateAppTagsBadRequest) Error

func (o *UpdateAppTagsBadRequest) Error() string

type UpdateAppTagsDefault

type UpdateAppTagsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}

UpdateAppTagsDefault handles this case with default header values.

Unexpected error

func NewUpdateAppTagsDefault

func NewUpdateAppTagsDefault(code int) *UpdateAppTagsDefault

NewUpdateAppTagsDefault creates a UpdateAppTagsDefault with default headers values

func (*UpdateAppTagsDefault) Code

func (o *UpdateAppTagsDefault) Code() int

Code gets the status code for the update app tags default response

func (*UpdateAppTagsDefault) Error

func (o *UpdateAppTagsDefault) Error() string

type UpdateAppTagsForbidden

type UpdateAppTagsForbidden struct {
}

UpdateAppTagsForbidden handles this case with default header values.

Forbidden

func NewUpdateAppTagsForbidden

func NewUpdateAppTagsForbidden() *UpdateAppTagsForbidden

NewUpdateAppTagsForbidden creates a UpdateAppTagsForbidden with default headers values

func (*UpdateAppTagsForbidden) Error

func (o *UpdateAppTagsForbidden) Error() string

type UpdateAppTagsOK

type UpdateAppTagsOK struct {
	Payload *models.UpdateTagsResponse
}

UpdateAppTagsOK handles this case with default header values.

A response containing an App's tags.

func NewUpdateAppTagsOK

func NewUpdateAppTagsOK() *UpdateAppTagsOK

NewUpdateAppTagsOK creates a UpdateAppTagsOK with default headers values

func (*UpdateAppTagsOK) Error

func (o *UpdateAppTagsOK) Error() string

type UpdateAppTagsParams

type UpdateAppTagsParams struct {

	/*Authorization
	  OAuth token

	*/
	Authorization string
	/*AppNameOrID
	  The appName or appId field of an app.

	*/
	AppNameOrID string
	/*UpdateAppTagsRequest*/
	UpdateAppTagsRequest *models.UpdateTagsRequest

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

UpdateAppTagsParams contains all the parameters to send to the API endpoint for the update app tags operation typically these are written to a http.Request

func NewUpdateAppTagsParams

func NewUpdateAppTagsParams() *UpdateAppTagsParams

NewUpdateAppTagsParams creates a new UpdateAppTagsParams object with the default values initialized.

func NewUpdateAppTagsParamsWithContext

func NewUpdateAppTagsParamsWithContext(ctx context.Context) *UpdateAppTagsParams

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

func NewUpdateAppTagsParamsWithHTTPClient

func NewUpdateAppTagsParamsWithHTTPClient(client *http.Client) *UpdateAppTagsParams

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

func NewUpdateAppTagsParamsWithTimeout

func NewUpdateAppTagsParamsWithTimeout(timeout time.Duration) *UpdateAppTagsParams

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

func (*UpdateAppTagsParams) SetAppNameOrID

func (o *UpdateAppTagsParams) SetAppNameOrID(appNameOrID string)

SetAppNameOrID adds the appNameOrId to the update app tags params

func (*UpdateAppTagsParams) SetAuthorization

func (o *UpdateAppTagsParams) SetAuthorization(authorization string)

SetAuthorization adds the authorization to the update app tags params

func (*UpdateAppTagsParams) SetContext

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

SetContext adds the context to the update app tags params

func (*UpdateAppTagsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update app tags params

func (*UpdateAppTagsParams) SetTimeout

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

SetTimeout adds the timeout to the update app tags params

func (*UpdateAppTagsParams) SetUpdateAppTagsRequest

func (o *UpdateAppTagsParams) SetUpdateAppTagsRequest(updateAppTagsRequest *models.UpdateTagsRequest)

SetUpdateAppTagsRequest adds the updateAppTagsRequest to the update app tags params

func (*UpdateAppTagsParams) WithAppNameOrID

func (o *UpdateAppTagsParams) WithAppNameOrID(appNameOrID string) *UpdateAppTagsParams

WithAppNameOrID adds the appNameOrID to the update app tags params

func (*UpdateAppTagsParams) WithAuthorization

func (o *UpdateAppTagsParams) WithAuthorization(authorization string) *UpdateAppTagsParams

WithAuthorization adds the authorization to the update app tags params

func (*UpdateAppTagsParams) WithContext

WithContext adds the context to the update app tags params

func (*UpdateAppTagsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update app tags params

func (*UpdateAppTagsParams) WithTimeout

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

WithTimeout adds the timeout to the update app tags params

func (*UpdateAppTagsParams) WithUpdateAppTagsRequest

func (o *UpdateAppTagsParams) WithUpdateAppTagsRequest(updateAppTagsRequest *models.UpdateTagsRequest) *UpdateAppTagsParams

WithUpdateAppTagsRequest adds the updateAppTagsRequest to the update app tags params

func (*UpdateAppTagsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateAppTagsReader

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

UpdateAppTagsReader is a Reader for the UpdateAppTags structure.

func (*UpdateAppTagsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAppTagsTooManyRequests

type UpdateAppTagsTooManyRequests struct {
	Payload *models.ErrorResponse
}

UpdateAppTagsTooManyRequests handles this case with default header values.

Too many requests

func NewUpdateAppTagsTooManyRequests

func NewUpdateAppTagsTooManyRequests() *UpdateAppTagsTooManyRequests

NewUpdateAppTagsTooManyRequests creates a UpdateAppTagsTooManyRequests with default headers values

func (*UpdateAppTagsTooManyRequests) Error

type UpdateAppTagsUnauthorized

type UpdateAppTagsUnauthorized struct {
}

UpdateAppTagsUnauthorized handles this case with default header values.

Unauthorized

func NewUpdateAppTagsUnauthorized

func NewUpdateAppTagsUnauthorized() *UpdateAppTagsUnauthorized

NewUpdateAppTagsUnauthorized creates a UpdateAppTagsUnauthorized with default headers values

func (*UpdateAppTagsUnauthorized) Error

func (o *UpdateAppTagsUnauthorized) Error() string

type UpdateAppTagsUnprocessableEntity

type UpdateAppTagsUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

UpdateAppTagsUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewUpdateAppTagsUnprocessableEntity

func NewUpdateAppTagsUnprocessableEntity() *UpdateAppTagsUnprocessableEntity

NewUpdateAppTagsUnprocessableEntity creates a UpdateAppTagsUnprocessableEntity with default headers values

func (*UpdateAppTagsUnprocessableEntity) Error

type UpdateAppTooManyRequests

type UpdateAppTooManyRequests struct {
	Payload *models.ErrorResponse
}

UpdateAppTooManyRequests handles this case with default header values.

Too many requests

func NewUpdateAppTooManyRequests

func NewUpdateAppTooManyRequests() *UpdateAppTooManyRequests

NewUpdateAppTooManyRequests creates a UpdateAppTooManyRequests with default headers values

func (*UpdateAppTooManyRequests) Error

func (o *UpdateAppTooManyRequests) Error() string

type UpdateAppUnauthorized

type UpdateAppUnauthorized struct {
}

UpdateAppUnauthorized handles this case with default header values.

Not authenticated

func NewUpdateAppUnauthorized

func NewUpdateAppUnauthorized() *UpdateAppUnauthorized

NewUpdateAppUnauthorized creates a UpdateAppUnauthorized with default headers values

func (*UpdateAppUnauthorized) Error

func (o *UpdateAppUnauthorized) Error() string

type UpdateAppUnprocessableEntity

type UpdateAppUnprocessableEntity struct {
	Payload *models.ErrorResponse
}

UpdateAppUnprocessableEntity handles this case with default header values.

Unprocessable Entity

func NewUpdateAppUnprocessableEntity

func NewUpdateAppUnprocessableEntity() *UpdateAppUnprocessableEntity

NewUpdateAppUnprocessableEntity creates a UpdateAppUnprocessableEntity with default headers values

func (*UpdateAppUnprocessableEntity) Error

Jump to

Keyboard shortcuts

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