service_request_naming

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Mar 10, 2020 License: MIT Imports: 10 Imported by: 0

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 service request naming API

func (*Client) CreateServiceRequestNaming

CreateServiceRequestNaming creates a new request naming rule

The new rule goes to the end of the rules list and will be the last to evaluate. Existing rules remain unaffected.

func (*Client) DeleteServiceRequestNaming

DeleteServiceRequestNaming deletes the specified request naming rule

func (*Client) GetServiceRequestNaming

func (a *Client) GetServiceRequestNaming(params *GetServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceRequestNamingOK, error)

GetServiceRequestNaming gets the parameters of the specified request naming rule

func (*Client) GetServiceRequestNamings

func (a *Client) GetServiceRequestNamings(params *GetServiceRequestNamingsParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceRequestNamingsOK, error)

GetServiceRequestNamings lists all request naming rules along with their parameters

func (*Client) GetServiceResourceNamings

func (a *Client) GetServiceResourceNamings(params *GetServiceResourceNamingsParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceResourceNamingsOK, error)

GetServiceResourceNamings lists the global service resource requests

Lists all extensions which currently are renamed to e.g., `Image`

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateServiceRequestNaming

UpdateServiceRequestNaming updates the specified request naming rule

If the rule with the specified ID doesn't exist, a new rule will be created at the end of the rules list and will be the last to evaluate.

func (*Client) UpdateServiceRequestNamingOrder

UpdateServiceRequestNamingOrder reorders the request namings

This request reorders the request namings according to the given list of IDs. Request namings not present in the body of the request will retain their relative ordering but will be ordered *after* all those present in the request.

func (*Client) UpdateServiceResourceNaming

UpdateServiceResourceNaming updates the global service resource requests

Update all extensions which are renamed to `Image` or `Binary`

func (*Client) ValidateCreateServiceRequestNaming

ValidateCreateServiceRequestNaming validates the new request naming rule for the p o s t request naming request

func (*Client) ValidateUpdateServiceRequestNaming

ValidateUpdateServiceRequestNaming validates the new request naming for the p u t request naming id request

If the rule with the specified ID doesn't exist, a new rule will be created at the end of the rules list and will be the last to evaluate.

func (*Client) ValidateUpdateServiceResourceNaming

ValidateUpdateServiceResourceNaming validates new resource requests settings for the p u t service resource request request

type ClientService

type ClientService interface {
	CreateServiceRequestNaming(params *CreateServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*CreateServiceRequestNamingCreated, error)

	DeleteServiceRequestNaming(params *DeleteServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteServiceRequestNamingNoContent, error)

	GetServiceRequestNaming(params *GetServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceRequestNamingOK, error)

	GetServiceRequestNamings(params *GetServiceRequestNamingsParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceRequestNamingsOK, error)

	GetServiceResourceNamings(params *GetServiceResourceNamingsParams, authInfo runtime.ClientAuthInfoWriter) (*GetServiceResourceNamingsOK, error)

	UpdateServiceRequestNaming(params *UpdateServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateServiceRequestNamingCreated, *UpdateServiceRequestNamingNoContent, error)

	UpdateServiceRequestNamingOrder(params *UpdateServiceRequestNamingOrderParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateServiceRequestNamingOrderNoContent, error)

	UpdateServiceResourceNaming(params *UpdateServiceResourceNamingParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateServiceResourceNamingNoContent, error)

	ValidateCreateServiceRequestNaming(params *ValidateCreateServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*ValidateCreateServiceRequestNamingNoContent, error)

	ValidateUpdateServiceRequestNaming(params *ValidateUpdateServiceRequestNamingParams, authInfo runtime.ClientAuthInfoWriter) (*ValidateUpdateServiceRequestNamingNoContent, error)

	ValidateUpdateServiceResourceNaming(params *ValidateUpdateServiceResourceNamingParams, authInfo runtime.ClientAuthInfoWriter) (*ValidateUpdateServiceResourceNamingNoContent, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

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

New creates a new service request naming API client.

type CreateServiceRequestNamingBadRequest

type CreateServiceRequestNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

CreateServiceRequestNamingBadRequest handles this case with default header values.

Failed. The input is invalid.

func NewCreateServiceRequestNamingBadRequest

func NewCreateServiceRequestNamingBadRequest() *CreateServiceRequestNamingBadRequest

NewCreateServiceRequestNamingBadRequest creates a CreateServiceRequestNamingBadRequest with default headers values

func (*CreateServiceRequestNamingBadRequest) Error

func (*CreateServiceRequestNamingBadRequest) GetPayload

type CreateServiceRequestNamingCreated

type CreateServiceRequestNamingCreated struct {
	Payload *dynatrace.EntityShortRepresentation
}

CreateServiceRequestNamingCreated handles this case with default header values.

Success. The request naming has been created. Response contains the new service's ID.

func NewCreateServiceRequestNamingCreated

func NewCreateServiceRequestNamingCreated() *CreateServiceRequestNamingCreated

NewCreateServiceRequestNamingCreated creates a CreateServiceRequestNamingCreated with default headers values

func (*CreateServiceRequestNamingCreated) Error

func (*CreateServiceRequestNamingCreated) GetPayload

type CreateServiceRequestNamingParams

type CreateServiceRequestNamingParams struct {

	/*Body
	 The JSON body of the request containing parameters of the new request naming rule.

	You must not specify the ID of the rule!

	*/
	Body *dynatrace.RequestNaming
	/*Position
	  Order of the new request naming rule. Set to `PREPEND` to prepend it to the list, `APPEND` to append it. Defaults to `APPEND`.

	*/
	Position *string

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

CreateServiceRequestNamingParams contains all the parameters to send to the API endpoint for the create service request naming operation typically these are written to a http.Request

func NewCreateServiceRequestNamingParams

func NewCreateServiceRequestNamingParams() *CreateServiceRequestNamingParams

NewCreateServiceRequestNamingParams creates a new CreateServiceRequestNamingParams object with the default values initialized.

func NewCreateServiceRequestNamingParamsWithContext

func NewCreateServiceRequestNamingParamsWithContext(ctx context.Context) *CreateServiceRequestNamingParams

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

func NewCreateServiceRequestNamingParamsWithHTTPClient

func NewCreateServiceRequestNamingParamsWithHTTPClient(client *http.Client) *CreateServiceRequestNamingParams

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

func NewCreateServiceRequestNamingParamsWithTimeout

func NewCreateServiceRequestNamingParamsWithTimeout(timeout time.Duration) *CreateServiceRequestNamingParams

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

func (*CreateServiceRequestNamingParams) SetBody

SetBody adds the body to the create service request naming params

func (*CreateServiceRequestNamingParams) SetContext

SetContext adds the context to the create service request naming params

func (*CreateServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create service request naming params

func (*CreateServiceRequestNamingParams) SetPosition

func (o *CreateServiceRequestNamingParams) SetPosition(position *string)

SetPosition adds the position to the create service request naming params

func (*CreateServiceRequestNamingParams) SetTimeout

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

SetTimeout adds the timeout to the create service request naming params

func (*CreateServiceRequestNamingParams) WithBody

WithBody adds the body to the create service request naming params

func (*CreateServiceRequestNamingParams) WithContext

WithContext adds the context to the create service request naming params

func (*CreateServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create service request naming params

func (*CreateServiceRequestNamingParams) WithPosition

WithPosition adds the position to the create service request naming params

func (*CreateServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the create service request naming params

func (*CreateServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateServiceRequestNamingReader

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

CreateServiceRequestNamingReader is a Reader for the CreateServiceRequestNaming structure.

func (*CreateServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteServiceRequestNamingNoContent

type DeleteServiceRequestNamingNoContent struct {
}

DeleteServiceRequestNamingNoContent handles this case with default header values.

Success. The rule has been deleted. Response doesn't have a body.

func NewDeleteServiceRequestNamingNoContent

func NewDeleteServiceRequestNamingNoContent() *DeleteServiceRequestNamingNoContent

NewDeleteServiceRequestNamingNoContent creates a DeleteServiceRequestNamingNoContent with default headers values

func (*DeleteServiceRequestNamingNoContent) Error

type DeleteServiceRequestNamingParams

type DeleteServiceRequestNamingParams struct {

	/*ID
	  The ID of the request naming rule to be deleted.

	*/
	ID strfmt.UUID

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

DeleteServiceRequestNamingParams contains all the parameters to send to the API endpoint for the delete service request naming operation typically these are written to a http.Request

func NewDeleteServiceRequestNamingParams

func NewDeleteServiceRequestNamingParams() *DeleteServiceRequestNamingParams

NewDeleteServiceRequestNamingParams creates a new DeleteServiceRequestNamingParams object with the default values initialized.

func NewDeleteServiceRequestNamingParamsWithContext

func NewDeleteServiceRequestNamingParamsWithContext(ctx context.Context) *DeleteServiceRequestNamingParams

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

func NewDeleteServiceRequestNamingParamsWithHTTPClient

func NewDeleteServiceRequestNamingParamsWithHTTPClient(client *http.Client) *DeleteServiceRequestNamingParams

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

func NewDeleteServiceRequestNamingParamsWithTimeout

func NewDeleteServiceRequestNamingParamsWithTimeout(timeout time.Duration) *DeleteServiceRequestNamingParams

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

func (*DeleteServiceRequestNamingParams) SetContext

SetContext adds the context to the delete service request naming params

func (*DeleteServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete service request naming params

func (*DeleteServiceRequestNamingParams) SetID

SetID adds the id to the delete service request naming params

func (*DeleteServiceRequestNamingParams) SetTimeout

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

SetTimeout adds the timeout to the delete service request naming params

func (*DeleteServiceRequestNamingParams) WithContext

WithContext adds the context to the delete service request naming params

func (*DeleteServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete service request naming params

func (*DeleteServiceRequestNamingParams) WithID

WithID adds the id to the delete service request naming params

func (*DeleteServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the delete service request naming params

func (*DeleteServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteServiceRequestNamingReader

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

DeleteServiceRequestNamingReader is a Reader for the DeleteServiceRequestNaming structure.

func (*DeleteServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceRequestNamingOK

type GetServiceRequestNamingOK struct {
	Payload *dynatrace.RequestNaming
}

GetServiceRequestNamingOK handles this case with default header values.

successful operation

func NewGetServiceRequestNamingOK

func NewGetServiceRequestNamingOK() *GetServiceRequestNamingOK

NewGetServiceRequestNamingOK creates a GetServiceRequestNamingOK with default headers values

func (*GetServiceRequestNamingOK) Error

func (o *GetServiceRequestNamingOK) Error() string

func (*GetServiceRequestNamingOK) GetPayload

type GetServiceRequestNamingParams

type GetServiceRequestNamingParams struct {

	/*ID
	  The ID of the request naming rule you're inquiring.

	*/
	ID strfmt.UUID

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

GetServiceRequestNamingParams contains all the parameters to send to the API endpoint for the get service request naming operation typically these are written to a http.Request

func NewGetServiceRequestNamingParams

func NewGetServiceRequestNamingParams() *GetServiceRequestNamingParams

NewGetServiceRequestNamingParams creates a new GetServiceRequestNamingParams object with the default values initialized.

func NewGetServiceRequestNamingParamsWithContext

func NewGetServiceRequestNamingParamsWithContext(ctx context.Context) *GetServiceRequestNamingParams

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

func NewGetServiceRequestNamingParamsWithHTTPClient

func NewGetServiceRequestNamingParamsWithHTTPClient(client *http.Client) *GetServiceRequestNamingParams

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

func NewGetServiceRequestNamingParamsWithTimeout

func NewGetServiceRequestNamingParamsWithTimeout(timeout time.Duration) *GetServiceRequestNamingParams

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

func (*GetServiceRequestNamingParams) SetContext

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

SetContext adds the context to the get service request naming params

func (*GetServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service request naming params

func (*GetServiceRequestNamingParams) SetID

SetID adds the id to the get service request naming params

func (*GetServiceRequestNamingParams) SetTimeout

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

SetTimeout adds the timeout to the get service request naming params

func (*GetServiceRequestNamingParams) WithContext

WithContext adds the context to the get service request naming params

func (*GetServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service request naming params

func (*GetServiceRequestNamingParams) WithID

WithID adds the id to the get service request naming params

func (*GetServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the get service request naming params

func (*GetServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceRequestNamingReader

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

GetServiceRequestNamingReader is a Reader for the GetServiceRequestNaming structure.

func (*GetServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceRequestNamingsOK

type GetServiceRequestNamingsOK struct {
	Payload *dynatrace.StubList
}

GetServiceRequestNamingsOK handles this case with default header values.

successful operation

func NewGetServiceRequestNamingsOK

func NewGetServiceRequestNamingsOK() *GetServiceRequestNamingsOK

NewGetServiceRequestNamingsOK creates a GetServiceRequestNamingsOK with default headers values

func (*GetServiceRequestNamingsOK) Error

func (*GetServiceRequestNamingsOK) GetPayload

type GetServiceRequestNamingsParams

type GetServiceRequestNamingsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetServiceRequestNamingsParams contains all the parameters to send to the API endpoint for the get service request namings operation typically these are written to a http.Request

func NewGetServiceRequestNamingsParams

func NewGetServiceRequestNamingsParams() *GetServiceRequestNamingsParams

NewGetServiceRequestNamingsParams creates a new GetServiceRequestNamingsParams object with the default values initialized.

func NewGetServiceRequestNamingsParamsWithContext

func NewGetServiceRequestNamingsParamsWithContext(ctx context.Context) *GetServiceRequestNamingsParams

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

func NewGetServiceRequestNamingsParamsWithHTTPClient

func NewGetServiceRequestNamingsParamsWithHTTPClient(client *http.Client) *GetServiceRequestNamingsParams

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

func NewGetServiceRequestNamingsParamsWithTimeout

func NewGetServiceRequestNamingsParamsWithTimeout(timeout time.Duration) *GetServiceRequestNamingsParams

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

func (*GetServiceRequestNamingsParams) SetContext

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

SetContext adds the context to the get service request namings params

func (*GetServiceRequestNamingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service request namings params

func (*GetServiceRequestNamingsParams) SetTimeout

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

SetTimeout adds the timeout to the get service request namings params

func (*GetServiceRequestNamingsParams) WithContext

WithContext adds the context to the get service request namings params

func (*GetServiceRequestNamingsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service request namings params

func (*GetServiceRequestNamingsParams) WithTimeout

WithTimeout adds the timeout to the get service request namings params

func (*GetServiceRequestNamingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceRequestNamingsReader

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

GetServiceRequestNamingsReader is a Reader for the GetServiceRequestNamings structure.

func (*GetServiceRequestNamingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceResourceNamingsOK

type GetServiceResourceNamingsOK struct {
	Payload *dynatrace.ResourceNaming
}

GetServiceResourceNamingsOK handles this case with default header values.

successful operation

func NewGetServiceResourceNamingsOK

func NewGetServiceResourceNamingsOK() *GetServiceResourceNamingsOK

NewGetServiceResourceNamingsOK creates a GetServiceResourceNamingsOK with default headers values

func (*GetServiceResourceNamingsOK) Error

func (*GetServiceResourceNamingsOK) GetPayload

type GetServiceResourceNamingsParams

type GetServiceResourceNamingsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetServiceResourceNamingsParams contains all the parameters to send to the API endpoint for the get service resource namings operation typically these are written to a http.Request

func NewGetServiceResourceNamingsParams

func NewGetServiceResourceNamingsParams() *GetServiceResourceNamingsParams

NewGetServiceResourceNamingsParams creates a new GetServiceResourceNamingsParams object with the default values initialized.

func NewGetServiceResourceNamingsParamsWithContext

func NewGetServiceResourceNamingsParamsWithContext(ctx context.Context) *GetServiceResourceNamingsParams

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

func NewGetServiceResourceNamingsParamsWithHTTPClient

func NewGetServiceResourceNamingsParamsWithHTTPClient(client *http.Client) *GetServiceResourceNamingsParams

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

func NewGetServiceResourceNamingsParamsWithTimeout

func NewGetServiceResourceNamingsParamsWithTimeout(timeout time.Duration) *GetServiceResourceNamingsParams

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

func (*GetServiceResourceNamingsParams) SetContext

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

SetContext adds the context to the get service resource namings params

func (*GetServiceResourceNamingsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service resource namings params

func (*GetServiceResourceNamingsParams) SetTimeout

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

SetTimeout adds the timeout to the get service resource namings params

func (*GetServiceResourceNamingsParams) WithContext

WithContext adds the context to the get service resource namings params

func (*GetServiceResourceNamingsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service resource namings params

func (*GetServiceResourceNamingsParams) WithTimeout

WithTimeout adds the timeout to the get service resource namings params

func (*GetServiceResourceNamingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceResourceNamingsReader

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

GetServiceResourceNamingsReader is a Reader for the GetServiceResourceNamings structure.

func (*GetServiceResourceNamingsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceRequestNamingBadRequest

type UpdateServiceRequestNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

UpdateServiceRequestNamingBadRequest handles this case with default header values.

Failed. The input is invalid.

func NewUpdateServiceRequestNamingBadRequest

func NewUpdateServiceRequestNamingBadRequest() *UpdateServiceRequestNamingBadRequest

NewUpdateServiceRequestNamingBadRequest creates a UpdateServiceRequestNamingBadRequest with default headers values

func (*UpdateServiceRequestNamingBadRequest) Error

func (*UpdateServiceRequestNamingBadRequest) GetPayload

type UpdateServiceRequestNamingCreated

type UpdateServiceRequestNamingCreated struct {
	Payload *dynatrace.EntityShortRepresentation
}

UpdateServiceRequestNamingCreated handles this case with default header values.

Success. Request naming rule has been created. Response contains the new request naming rule's ID and name.

func NewUpdateServiceRequestNamingCreated

func NewUpdateServiceRequestNamingCreated() *UpdateServiceRequestNamingCreated

NewUpdateServiceRequestNamingCreated creates a UpdateServiceRequestNamingCreated with default headers values

func (*UpdateServiceRequestNamingCreated) Error

func (*UpdateServiceRequestNamingCreated) GetPayload

type UpdateServiceRequestNamingNoContent

type UpdateServiceRequestNamingNoContent struct {
}

UpdateServiceRequestNamingNoContent handles this case with default header values.

Success. Request naming rule has been updated. Response doesn't have a body.

func NewUpdateServiceRequestNamingNoContent

func NewUpdateServiceRequestNamingNoContent() *UpdateServiceRequestNamingNoContent

NewUpdateServiceRequestNamingNoContent creates a UpdateServiceRequestNamingNoContent with default headers values

func (*UpdateServiceRequestNamingNoContent) Error

type UpdateServiceRequestNamingOrderBadRequest

type UpdateServiceRequestNamingOrderBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

UpdateServiceRequestNamingOrderBadRequest handles this case with default header values.

Failed. The input is invalid.

func NewUpdateServiceRequestNamingOrderBadRequest

func NewUpdateServiceRequestNamingOrderBadRequest() *UpdateServiceRequestNamingOrderBadRequest

NewUpdateServiceRequestNamingOrderBadRequest creates a UpdateServiceRequestNamingOrderBadRequest with default headers values

func (*UpdateServiceRequestNamingOrderBadRequest) Error

func (*UpdateServiceRequestNamingOrderBadRequest) GetPayload

type UpdateServiceRequestNamingOrderNoContent

type UpdateServiceRequestNamingOrderNoContent struct {
}

UpdateServiceRequestNamingOrderNoContent handles this case with default header values.

Success. Request namings have been updated. Response doesn't have a body.

func NewUpdateServiceRequestNamingOrderNoContent

func NewUpdateServiceRequestNamingOrderNoContent() *UpdateServiceRequestNamingOrderNoContent

NewUpdateServiceRequestNamingOrderNoContent creates a UpdateServiceRequestNamingOrderNoContent with default headers values

func (*UpdateServiceRequestNamingOrderNoContent) Error

type UpdateServiceRequestNamingOrderParams

type UpdateServiceRequestNamingOrderParams struct {

	/*Body
	  JSON body of the request containing the IDs of the request naming rules in the desired order. Any further properties (*name*, *description*) will be ignored.

	*/
	Body *dynatrace.StubList

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

UpdateServiceRequestNamingOrderParams contains all the parameters to send to the API endpoint for the update service request naming order operation typically these are written to a http.Request

func NewUpdateServiceRequestNamingOrderParams

func NewUpdateServiceRequestNamingOrderParams() *UpdateServiceRequestNamingOrderParams

NewUpdateServiceRequestNamingOrderParams creates a new UpdateServiceRequestNamingOrderParams object with the default values initialized.

func NewUpdateServiceRequestNamingOrderParamsWithContext

func NewUpdateServiceRequestNamingOrderParamsWithContext(ctx context.Context) *UpdateServiceRequestNamingOrderParams

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

func NewUpdateServiceRequestNamingOrderParamsWithHTTPClient

func NewUpdateServiceRequestNamingOrderParamsWithHTTPClient(client *http.Client) *UpdateServiceRequestNamingOrderParams

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

func NewUpdateServiceRequestNamingOrderParamsWithTimeout

func NewUpdateServiceRequestNamingOrderParamsWithTimeout(timeout time.Duration) *UpdateServiceRequestNamingOrderParams

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

func (*UpdateServiceRequestNamingOrderParams) SetBody

SetBody adds the body to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) SetContext

SetContext adds the context to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) SetTimeout

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

SetTimeout adds the timeout to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) WithBody

WithBody adds the body to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) WithContext

WithContext adds the context to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) WithTimeout

WithTimeout adds the timeout to the update service request naming order params

func (*UpdateServiceRequestNamingOrderParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceRequestNamingOrderReader

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

UpdateServiceRequestNamingOrderReader is a Reader for the UpdateServiceRequestNamingOrder structure.

func (*UpdateServiceRequestNamingOrderReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceRequestNamingParams

type UpdateServiceRequestNamingParams struct {

	/*Body
	  The JSON body of the request containing updated parameters of the request naming.

	*/
	Body *dynatrace.RequestNaming
	/*ID
	 The ID of the request naming to be updated.

	The ID of the request naming in the body of the request must match this ID.

	*/
	ID strfmt.UUID

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

UpdateServiceRequestNamingParams contains all the parameters to send to the API endpoint for the update service request naming operation typically these are written to a http.Request

func NewUpdateServiceRequestNamingParams

func NewUpdateServiceRequestNamingParams() *UpdateServiceRequestNamingParams

NewUpdateServiceRequestNamingParams creates a new UpdateServiceRequestNamingParams object with the default values initialized.

func NewUpdateServiceRequestNamingParamsWithContext

func NewUpdateServiceRequestNamingParamsWithContext(ctx context.Context) *UpdateServiceRequestNamingParams

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

func NewUpdateServiceRequestNamingParamsWithHTTPClient

func NewUpdateServiceRequestNamingParamsWithHTTPClient(client *http.Client) *UpdateServiceRequestNamingParams

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

func NewUpdateServiceRequestNamingParamsWithTimeout

func NewUpdateServiceRequestNamingParamsWithTimeout(timeout time.Duration) *UpdateServiceRequestNamingParams

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

func (*UpdateServiceRequestNamingParams) SetBody

SetBody adds the body to the update service request naming params

func (*UpdateServiceRequestNamingParams) SetContext

SetContext adds the context to the update service request naming params

func (*UpdateServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service request naming params

func (*UpdateServiceRequestNamingParams) SetID

SetID adds the id to the update service request naming params

func (*UpdateServiceRequestNamingParams) SetTimeout

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

SetTimeout adds the timeout to the update service request naming params

func (*UpdateServiceRequestNamingParams) WithBody

WithBody adds the body to the update service request naming params

func (*UpdateServiceRequestNamingParams) WithContext

WithContext adds the context to the update service request naming params

func (*UpdateServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service request naming params

func (*UpdateServiceRequestNamingParams) WithID

WithID adds the id to the update service request naming params

func (*UpdateServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the update service request naming params

func (*UpdateServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceRequestNamingReader

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

UpdateServiceRequestNamingReader is a Reader for the UpdateServiceRequestNaming structure.

func (*UpdateServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceResourceNamingBadRequest

type UpdateServiceResourceNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

UpdateServiceResourceNamingBadRequest handles this case with default header values.

Failed. The input is invalid. See the response body for details.

func NewUpdateServiceResourceNamingBadRequest

func NewUpdateServiceResourceNamingBadRequest() *UpdateServiceResourceNamingBadRequest

NewUpdateServiceResourceNamingBadRequest creates a UpdateServiceResourceNamingBadRequest with default headers values

func (*UpdateServiceResourceNamingBadRequest) Error

func (*UpdateServiceResourceNamingBadRequest) GetPayload

type UpdateServiceResourceNamingNoContent

type UpdateServiceResourceNamingNoContent struct {
}

UpdateServiceResourceNamingNoContent handles this case with default header values.

Success. The configuration is updated. Response does not have a body.

func NewUpdateServiceResourceNamingNoContent

func NewUpdateServiceResourceNamingNoContent() *UpdateServiceResourceNamingNoContent

NewUpdateServiceResourceNamingNoContent creates a UpdateServiceResourceNamingNoContent with default headers values

func (*UpdateServiceResourceNamingNoContent) Error

type UpdateServiceResourceNamingParams

type UpdateServiceResourceNamingParams struct {

	/*Body*/
	Body *dynatrace.ResourceNaming

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

UpdateServiceResourceNamingParams contains all the parameters to send to the API endpoint for the update service resource naming operation typically these are written to a http.Request

func NewUpdateServiceResourceNamingParams

func NewUpdateServiceResourceNamingParams() *UpdateServiceResourceNamingParams

NewUpdateServiceResourceNamingParams creates a new UpdateServiceResourceNamingParams object with the default values initialized.

func NewUpdateServiceResourceNamingParamsWithContext

func NewUpdateServiceResourceNamingParamsWithContext(ctx context.Context) *UpdateServiceResourceNamingParams

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

func NewUpdateServiceResourceNamingParamsWithHTTPClient

func NewUpdateServiceResourceNamingParamsWithHTTPClient(client *http.Client) *UpdateServiceResourceNamingParams

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

func NewUpdateServiceResourceNamingParamsWithTimeout

func NewUpdateServiceResourceNamingParamsWithTimeout(timeout time.Duration) *UpdateServiceResourceNamingParams

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

func (*UpdateServiceResourceNamingParams) SetBody

SetBody adds the body to the update service resource naming params

func (*UpdateServiceResourceNamingParams) SetContext

SetContext adds the context to the update service resource naming params

func (*UpdateServiceResourceNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service resource naming params

func (*UpdateServiceResourceNamingParams) SetTimeout

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

SetTimeout adds the timeout to the update service resource naming params

func (*UpdateServiceResourceNamingParams) WithBody

WithBody adds the body to the update service resource naming params

func (*UpdateServiceResourceNamingParams) WithContext

WithContext adds the context to the update service resource naming params

func (*UpdateServiceResourceNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service resource naming params

func (*UpdateServiceResourceNamingParams) WithTimeout

WithTimeout adds the timeout to the update service resource naming params

func (*UpdateServiceResourceNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceResourceNamingReader

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

UpdateServiceResourceNamingReader is a Reader for the UpdateServiceResourceNaming structure.

func (*UpdateServiceResourceNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ValidateCreateServiceRequestNamingBadRequest

type ValidateCreateServiceRequestNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

ValidateCreateServiceRequestNamingBadRequest handles this case with default header values.

Failed. The input is invalid.

func NewValidateCreateServiceRequestNamingBadRequest

func NewValidateCreateServiceRequestNamingBadRequest() *ValidateCreateServiceRequestNamingBadRequest

NewValidateCreateServiceRequestNamingBadRequest creates a ValidateCreateServiceRequestNamingBadRequest with default headers values

func (*ValidateCreateServiceRequestNamingBadRequest) Error

func (*ValidateCreateServiceRequestNamingBadRequest) GetPayload

type ValidateCreateServiceRequestNamingNoContent

type ValidateCreateServiceRequestNamingNoContent struct {
}

ValidateCreateServiceRequestNamingNoContent handles this case with default header values.

Validated. The submitted configuration is valid. Response does not have a body.

func NewValidateCreateServiceRequestNamingNoContent

func NewValidateCreateServiceRequestNamingNoContent() *ValidateCreateServiceRequestNamingNoContent

NewValidateCreateServiceRequestNamingNoContent creates a ValidateCreateServiceRequestNamingNoContent with default headers values

func (*ValidateCreateServiceRequestNamingNoContent) Error

type ValidateCreateServiceRequestNamingParams

type ValidateCreateServiceRequestNamingParams struct {

	/*Body
	 The JSON body of the request containing parameters of the new request naming rule.

	You must not specify the ID of the rule!

	*/
	Body *dynatrace.RequestNaming

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

ValidateCreateServiceRequestNamingParams contains all the parameters to send to the API endpoint for the validate create service request naming operation typically these are written to a http.Request

func NewValidateCreateServiceRequestNamingParams

func NewValidateCreateServiceRequestNamingParams() *ValidateCreateServiceRequestNamingParams

NewValidateCreateServiceRequestNamingParams creates a new ValidateCreateServiceRequestNamingParams object with the default values initialized.

func NewValidateCreateServiceRequestNamingParamsWithContext

func NewValidateCreateServiceRequestNamingParamsWithContext(ctx context.Context) *ValidateCreateServiceRequestNamingParams

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

func NewValidateCreateServiceRequestNamingParamsWithHTTPClient

func NewValidateCreateServiceRequestNamingParamsWithHTTPClient(client *http.Client) *ValidateCreateServiceRequestNamingParams

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

func NewValidateCreateServiceRequestNamingParamsWithTimeout

func NewValidateCreateServiceRequestNamingParamsWithTimeout(timeout time.Duration) *ValidateCreateServiceRequestNamingParams

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

func (*ValidateCreateServiceRequestNamingParams) SetBody

SetBody adds the body to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) SetContext

SetContext adds the context to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) SetTimeout

SetTimeout adds the timeout to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) WithBody

WithBody adds the body to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) WithContext

WithContext adds the context to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the validate create service request naming params

func (*ValidateCreateServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateCreateServiceRequestNamingReader

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

ValidateCreateServiceRequestNamingReader is a Reader for the ValidateCreateServiceRequestNaming structure.

func (*ValidateCreateServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ValidateUpdateServiceRequestNamingBadRequest

type ValidateUpdateServiceRequestNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

ValidateUpdateServiceRequestNamingBadRequest handles this case with default header values.

Failed. The input is invalid.

func NewValidateUpdateServiceRequestNamingBadRequest

func NewValidateUpdateServiceRequestNamingBadRequest() *ValidateUpdateServiceRequestNamingBadRequest

NewValidateUpdateServiceRequestNamingBadRequest creates a ValidateUpdateServiceRequestNamingBadRequest with default headers values

func (*ValidateUpdateServiceRequestNamingBadRequest) Error

func (*ValidateUpdateServiceRequestNamingBadRequest) GetPayload

type ValidateUpdateServiceRequestNamingNoContent

type ValidateUpdateServiceRequestNamingNoContent struct {
}

ValidateUpdateServiceRequestNamingNoContent handles this case with default header values.

Validated. The submitted configuration is valid. Response does not have a body.

func NewValidateUpdateServiceRequestNamingNoContent

func NewValidateUpdateServiceRequestNamingNoContent() *ValidateUpdateServiceRequestNamingNoContent

NewValidateUpdateServiceRequestNamingNoContent creates a ValidateUpdateServiceRequestNamingNoContent with default headers values

func (*ValidateUpdateServiceRequestNamingNoContent) Error

type ValidateUpdateServiceRequestNamingParams

type ValidateUpdateServiceRequestNamingParams struct {

	/*Body
	  The JSON body of the request containing updated parameters of the request naming.

	*/
	Body *dynatrace.RequestNaming
	/*ID
	 The ID of the request naming to be updated.

	The ID of the request naming in the body of the request must match this ID.

	*/
	ID strfmt.UUID

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

ValidateUpdateServiceRequestNamingParams contains all the parameters to send to the API endpoint for the validate update service request naming operation typically these are written to a http.Request

func NewValidateUpdateServiceRequestNamingParams

func NewValidateUpdateServiceRequestNamingParams() *ValidateUpdateServiceRequestNamingParams

NewValidateUpdateServiceRequestNamingParams creates a new ValidateUpdateServiceRequestNamingParams object with the default values initialized.

func NewValidateUpdateServiceRequestNamingParamsWithContext

func NewValidateUpdateServiceRequestNamingParamsWithContext(ctx context.Context) *ValidateUpdateServiceRequestNamingParams

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

func NewValidateUpdateServiceRequestNamingParamsWithHTTPClient

func NewValidateUpdateServiceRequestNamingParamsWithHTTPClient(client *http.Client) *ValidateUpdateServiceRequestNamingParams

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

func NewValidateUpdateServiceRequestNamingParamsWithTimeout

func NewValidateUpdateServiceRequestNamingParamsWithTimeout(timeout time.Duration) *ValidateUpdateServiceRequestNamingParams

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

func (*ValidateUpdateServiceRequestNamingParams) SetBody

SetBody adds the body to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) SetContext

SetContext adds the context to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) SetID

SetID adds the id to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) SetTimeout

SetTimeout adds the timeout to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WithBody

WithBody adds the body to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WithContext

WithContext adds the context to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WithID

WithID adds the id to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WithTimeout

WithTimeout adds the timeout to the validate update service request naming params

func (*ValidateUpdateServiceRequestNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateUpdateServiceRequestNamingReader

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

ValidateUpdateServiceRequestNamingReader is a Reader for the ValidateUpdateServiceRequestNaming structure.

func (*ValidateUpdateServiceRequestNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ValidateUpdateServiceResourceNamingBadRequest

type ValidateUpdateServiceResourceNamingBadRequest struct {
	Payload *dynatrace.ErrorEnvelope
}

ValidateUpdateServiceResourceNamingBadRequest handles this case with default header values.

Failed. The input is invalid. See the response body for details.

func NewValidateUpdateServiceResourceNamingBadRequest

func NewValidateUpdateServiceResourceNamingBadRequest() *ValidateUpdateServiceResourceNamingBadRequest

NewValidateUpdateServiceResourceNamingBadRequest creates a ValidateUpdateServiceResourceNamingBadRequest with default headers values

func (*ValidateUpdateServiceResourceNamingBadRequest) Error

func (*ValidateUpdateServiceResourceNamingBadRequest) GetPayload

type ValidateUpdateServiceResourceNamingNoContent

type ValidateUpdateServiceResourceNamingNoContent struct {
}

ValidateUpdateServiceResourceNamingNoContent handles this case with default header values.

Validated. The submitted configuration is valid. Response does not have a body.

func NewValidateUpdateServiceResourceNamingNoContent

func NewValidateUpdateServiceResourceNamingNoContent() *ValidateUpdateServiceResourceNamingNoContent

NewValidateUpdateServiceResourceNamingNoContent creates a ValidateUpdateServiceResourceNamingNoContent with default headers values

func (*ValidateUpdateServiceResourceNamingNoContent) Error

type ValidateUpdateServiceResourceNamingParams

type ValidateUpdateServiceResourceNamingParams struct {

	/*Body*/
	Body *dynatrace.ResourceNaming

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

ValidateUpdateServiceResourceNamingParams contains all the parameters to send to the API endpoint for the validate update service resource naming operation typically these are written to a http.Request

func NewValidateUpdateServiceResourceNamingParams

func NewValidateUpdateServiceResourceNamingParams() *ValidateUpdateServiceResourceNamingParams

NewValidateUpdateServiceResourceNamingParams creates a new ValidateUpdateServiceResourceNamingParams object with the default values initialized.

func NewValidateUpdateServiceResourceNamingParamsWithContext

func NewValidateUpdateServiceResourceNamingParamsWithContext(ctx context.Context) *ValidateUpdateServiceResourceNamingParams

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

func NewValidateUpdateServiceResourceNamingParamsWithHTTPClient

func NewValidateUpdateServiceResourceNamingParamsWithHTTPClient(client *http.Client) *ValidateUpdateServiceResourceNamingParams

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

func NewValidateUpdateServiceResourceNamingParamsWithTimeout

func NewValidateUpdateServiceResourceNamingParamsWithTimeout(timeout time.Duration) *ValidateUpdateServiceResourceNamingParams

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

func (*ValidateUpdateServiceResourceNamingParams) SetBody

SetBody adds the body to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) SetContext

SetContext adds the context to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) SetTimeout

SetTimeout adds the timeout to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) WithBody

WithBody adds the body to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) WithContext

WithContext adds the context to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) WithTimeout

WithTimeout adds the timeout to the validate update service resource naming params

func (*ValidateUpdateServiceResourceNamingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateUpdateServiceResourceNamingReader

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

ValidateUpdateServiceResourceNamingReader is a Reader for the ValidateUpdateServiceResourceNaming structure.

func (*ValidateUpdateServiceResourceNamingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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