firewall_policies

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2024 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for firewall policies API

func (*Client) CreateFirewallPolicies

func (a *Client) CreateFirewallPolicies(params *CreateFirewallPoliciesParams, opts ...ClientOption) (*CreateFirewallPoliciesCreated, error)

CreateFirewallPolicies creates firewall policies by specifying details about the policy to create

func (*Client) DeleteFirewallPolicies

func (a *Client) DeleteFirewallPolicies(params *DeleteFirewallPoliciesParams, opts ...ClientOption) (*DeleteFirewallPoliciesOK, error)

DeleteFirewallPolicies deletes a set of firewall policies by specifying their i ds

func (*Client) GetFirewallPolicies

func (a *Client) GetFirewallPolicies(params *GetFirewallPoliciesParams, opts ...ClientOption) (*GetFirewallPoliciesOK, error)

GetFirewallPolicies retrieves a set of firewall policies by specifying their i ds

func (*Client) PerformFirewallPoliciesAction

func (a *Client) PerformFirewallPoliciesAction(params *PerformFirewallPoliciesActionParams, opts ...ClientOption) (*PerformFirewallPoliciesActionOK, error)

PerformFirewallPoliciesAction performs the specified action on the firewall policies specified in the request

func (*Client) QueryCombinedFirewallPolicies

func (a *Client) QueryCombinedFirewallPolicies(params *QueryCombinedFirewallPoliciesParams, opts ...ClientOption) (*QueryCombinedFirewallPoliciesOK, error)

QueryCombinedFirewallPolicies searches for firewall policies in your environment by providing an f q l filter and paging details returns a set of firewall policies which match the filter criteria

func (*Client) QueryCombinedFirewallPolicyMembers

func (a *Client) QueryCombinedFirewallPolicyMembers(params *QueryCombinedFirewallPolicyMembersParams, opts ...ClientOption) (*QueryCombinedFirewallPolicyMembersOK, error)

QueryCombinedFirewallPolicyMembers searches for members of a firewall policy in your environment by providing an f q l filter and paging details returns a set of host details which match the filter criteria

func (*Client) QueryFirewallPolicies

func (a *Client) QueryFirewallPolicies(params *QueryFirewallPoliciesParams, opts ...ClientOption) (*QueryFirewallPoliciesOK, error)

QueryFirewallPolicies searches for firewall policies in your environment by providing an f q l filter and paging details returns a set of firewall policy i ds which match the filter criteria

func (*Client) QueryFirewallPolicyMembers

func (a *Client) QueryFirewallPolicyMembers(params *QueryFirewallPolicyMembersParams, opts ...ClientOption) (*QueryFirewallPolicyMembersOK, error)

QueryFirewallPolicyMembers searches for members of a firewall policy in your environment by providing an f q l filter and paging details returns a set of agent i ds which match the filter criteria

func (*Client) SetFirewallPoliciesPrecedence

func (a *Client) SetFirewallPoliciesPrecedence(params *SetFirewallPoliciesPrecedenceParams, opts ...ClientOption) (*SetFirewallPoliciesPrecedenceOK, error)

SetFirewallPoliciesPrecedence sets the precedence of firewall policies based on the order of i ds specified in the request the first ID specified will have the highest precedence and the last ID specified will have the lowest you must specify all non default policies for a platform when updating precedence

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateFirewallPolicies

func (a *Client) UpdateFirewallPolicies(params *UpdateFirewallPoliciesParams, opts ...ClientOption) (*UpdateFirewallPoliciesOK, error)

UpdateFirewallPolicies updates firewall policies by specifying the ID of the policy and details to update

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateFirewallPolicies(params *CreateFirewallPoliciesParams, opts ...ClientOption) (*CreateFirewallPoliciesCreated, error)

	DeleteFirewallPolicies(params *DeleteFirewallPoliciesParams, opts ...ClientOption) (*DeleteFirewallPoliciesOK, error)

	GetFirewallPolicies(params *GetFirewallPoliciesParams, opts ...ClientOption) (*GetFirewallPoliciesOK, error)

	PerformFirewallPoliciesAction(params *PerformFirewallPoliciesActionParams, opts ...ClientOption) (*PerformFirewallPoliciesActionOK, error)

	QueryCombinedFirewallPolicies(params *QueryCombinedFirewallPoliciesParams, opts ...ClientOption) (*QueryCombinedFirewallPoliciesOK, error)

	QueryCombinedFirewallPolicyMembers(params *QueryCombinedFirewallPolicyMembersParams, opts ...ClientOption) (*QueryCombinedFirewallPolicyMembersOK, error)

	QueryFirewallPolicies(params *QueryFirewallPoliciesParams, opts ...ClientOption) (*QueryFirewallPoliciesOK, error)

	QueryFirewallPolicyMembers(params *QueryFirewallPolicyMembersParams, opts ...ClientOption) (*QueryFirewallPolicyMembersOK, error)

	SetFirewallPoliciesPrecedence(params *SetFirewallPoliciesPrecedenceParams, opts ...ClientOption) (*SetFirewallPoliciesPrecedenceOK, error)

	UpdateFirewallPolicies(params *UpdateFirewallPoliciesParams, opts ...ClientOption) (*UpdateFirewallPoliciesOK, 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 firewall policies API client.

type CreateFirewallPoliciesBadRequest

type CreateFirewallPoliciesBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

CreateFirewallPoliciesBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewCreateFirewallPoliciesBadRequest

func NewCreateFirewallPoliciesBadRequest() *CreateFirewallPoliciesBadRequest

NewCreateFirewallPoliciesBadRequest creates a CreateFirewallPoliciesBadRequest with default headers values

func (*CreateFirewallPoliciesBadRequest) Code added in v0.2.33

Code gets the status code for the create firewall policies bad request response

func (*CreateFirewallPoliciesBadRequest) Error

func (*CreateFirewallPoliciesBadRequest) GetPayload

func (*CreateFirewallPoliciesBadRequest) IsClientError added in v0.2.27

func (o *CreateFirewallPoliciesBadRequest) IsClientError() bool

IsClientError returns true when this create firewall policies bad request response has a 4xx status code

func (*CreateFirewallPoliciesBadRequest) IsCode added in v0.2.27

func (o *CreateFirewallPoliciesBadRequest) IsCode(code int) bool

IsCode returns true when this create firewall policies bad request response a status code equal to that given

func (*CreateFirewallPoliciesBadRequest) IsRedirect added in v0.2.27

func (o *CreateFirewallPoliciesBadRequest) IsRedirect() bool

IsRedirect returns true when this create firewall policies bad request response has a 3xx status code

func (*CreateFirewallPoliciesBadRequest) IsServerError added in v0.2.27

func (o *CreateFirewallPoliciesBadRequest) IsServerError() bool

IsServerError returns true when this create firewall policies bad request response has a 5xx status code

func (*CreateFirewallPoliciesBadRequest) IsSuccess added in v0.2.27

func (o *CreateFirewallPoliciesBadRequest) IsSuccess() bool

IsSuccess returns true when this create firewall policies bad request response has a 2xx status code

func (*CreateFirewallPoliciesBadRequest) String added in v0.2.27

type CreateFirewallPoliciesCreated

type CreateFirewallPoliciesCreated struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

CreateFirewallPoliciesCreated describes a response with status code 201, with default header values.

Created

func NewCreateFirewallPoliciesCreated

func NewCreateFirewallPoliciesCreated() *CreateFirewallPoliciesCreated

NewCreateFirewallPoliciesCreated creates a CreateFirewallPoliciesCreated with default headers values

func (*CreateFirewallPoliciesCreated) Code added in v0.2.33

Code gets the status code for the create firewall policies created response

func (*CreateFirewallPoliciesCreated) Error

func (*CreateFirewallPoliciesCreated) GetPayload

func (*CreateFirewallPoliciesCreated) IsClientError added in v0.2.27

func (o *CreateFirewallPoliciesCreated) IsClientError() bool

IsClientError returns true when this create firewall policies created response has a 4xx status code

func (*CreateFirewallPoliciesCreated) IsCode added in v0.2.27

func (o *CreateFirewallPoliciesCreated) IsCode(code int) bool

IsCode returns true when this create firewall policies created response a status code equal to that given

func (*CreateFirewallPoliciesCreated) IsRedirect added in v0.2.27

func (o *CreateFirewallPoliciesCreated) IsRedirect() bool

IsRedirect returns true when this create firewall policies created response has a 3xx status code

func (*CreateFirewallPoliciesCreated) IsServerError added in v0.2.27

func (o *CreateFirewallPoliciesCreated) IsServerError() bool

IsServerError returns true when this create firewall policies created response has a 5xx status code

func (*CreateFirewallPoliciesCreated) IsSuccess added in v0.2.27

func (o *CreateFirewallPoliciesCreated) IsSuccess() bool

IsSuccess returns true when this create firewall policies created response has a 2xx status code

func (*CreateFirewallPoliciesCreated) String added in v0.2.27

type CreateFirewallPoliciesForbidden

type CreateFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

CreateFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewCreateFirewallPoliciesForbidden

func NewCreateFirewallPoliciesForbidden() *CreateFirewallPoliciesForbidden

NewCreateFirewallPoliciesForbidden creates a CreateFirewallPoliciesForbidden with default headers values

func (*CreateFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the create firewall policies forbidden response

func (*CreateFirewallPoliciesForbidden) Error

func (*CreateFirewallPoliciesForbidden) GetPayload

func (*CreateFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *CreateFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this create firewall policies forbidden response has a 4xx status code

func (*CreateFirewallPoliciesForbidden) IsCode added in v0.2.27

func (o *CreateFirewallPoliciesForbidden) IsCode(code int) bool

IsCode returns true when this create firewall policies forbidden response a status code equal to that given

func (*CreateFirewallPoliciesForbidden) IsRedirect added in v0.2.27

func (o *CreateFirewallPoliciesForbidden) IsRedirect() bool

IsRedirect returns true when this create firewall policies forbidden response has a 3xx status code

func (*CreateFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *CreateFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this create firewall policies forbidden response has a 5xx status code

func (*CreateFirewallPoliciesForbidden) IsSuccess added in v0.2.27

func (o *CreateFirewallPoliciesForbidden) IsSuccess() bool

IsSuccess returns true when this create firewall policies forbidden response has a 2xx status code

func (*CreateFirewallPoliciesForbidden) String added in v0.2.27

type CreateFirewallPoliciesInternalServerError

type CreateFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

CreateFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewCreateFirewallPoliciesInternalServerError

func NewCreateFirewallPoliciesInternalServerError() *CreateFirewallPoliciesInternalServerError

NewCreateFirewallPoliciesInternalServerError creates a CreateFirewallPoliciesInternalServerError with default headers values

func (*CreateFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the create firewall policies internal server error response

func (*CreateFirewallPoliciesInternalServerError) Error

func (*CreateFirewallPoliciesInternalServerError) GetPayload

func (*CreateFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this create firewall policies internal server error response has a 4xx status code

func (*CreateFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this create firewall policies internal server error response a status code equal to that given

func (*CreateFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this create firewall policies internal server error response has a 3xx status code

func (*CreateFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this create firewall policies internal server error response has a 5xx status code

func (*CreateFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this create firewall policies internal server error response has a 2xx status code

func (*CreateFirewallPoliciesInternalServerError) String added in v0.2.27

type CreateFirewallPoliciesNotFound

type CreateFirewallPoliciesNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

CreateFirewallPoliciesNotFound describes a response with status code 404, with default header values.

Not Found

func NewCreateFirewallPoliciesNotFound

func NewCreateFirewallPoliciesNotFound() *CreateFirewallPoliciesNotFound

NewCreateFirewallPoliciesNotFound creates a CreateFirewallPoliciesNotFound with default headers values

func (*CreateFirewallPoliciesNotFound) Code added in v0.2.33

Code gets the status code for the create firewall policies not found response

func (*CreateFirewallPoliciesNotFound) Error

func (*CreateFirewallPoliciesNotFound) GetPayload

func (*CreateFirewallPoliciesNotFound) IsClientError added in v0.2.27

func (o *CreateFirewallPoliciesNotFound) IsClientError() bool

IsClientError returns true when this create firewall policies not found response has a 4xx status code

func (*CreateFirewallPoliciesNotFound) IsCode added in v0.2.27

func (o *CreateFirewallPoliciesNotFound) IsCode(code int) bool

IsCode returns true when this create firewall policies not found response a status code equal to that given

func (*CreateFirewallPoliciesNotFound) IsRedirect added in v0.2.27

func (o *CreateFirewallPoliciesNotFound) IsRedirect() bool

IsRedirect returns true when this create firewall policies not found response has a 3xx status code

func (*CreateFirewallPoliciesNotFound) IsServerError added in v0.2.27

func (o *CreateFirewallPoliciesNotFound) IsServerError() bool

IsServerError returns true when this create firewall policies not found response has a 5xx status code

func (*CreateFirewallPoliciesNotFound) IsSuccess added in v0.2.27

func (o *CreateFirewallPoliciesNotFound) IsSuccess() bool

IsSuccess returns true when this create firewall policies not found response has a 2xx status code

func (*CreateFirewallPoliciesNotFound) String added in v0.2.27

type CreateFirewallPoliciesParams

type CreateFirewallPoliciesParams struct {

	// Body.
	Body *models.FirewallCreateFirewallPoliciesReqV1

	/* CloneID.

	   The policy ID to be cloned from
	*/
	CloneID *string

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

CreateFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the create firewall policies operation.

Typically these are written to a http.Request.

func NewCreateFirewallPoliciesParams

func NewCreateFirewallPoliciesParams() *CreateFirewallPoliciesParams

NewCreateFirewallPoliciesParams creates a new CreateFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewCreateFirewallPoliciesParamsWithContext

func NewCreateFirewallPoliciesParamsWithContext(ctx context.Context) *CreateFirewallPoliciesParams

NewCreateFirewallPoliciesParamsWithContext creates a new CreateFirewallPoliciesParams object with the ability to set a context for a request.

func NewCreateFirewallPoliciesParamsWithHTTPClient

func NewCreateFirewallPoliciesParamsWithHTTPClient(client *http.Client) *CreateFirewallPoliciesParams

NewCreateFirewallPoliciesParamsWithHTTPClient creates a new CreateFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewCreateFirewallPoliciesParamsWithTimeout

func NewCreateFirewallPoliciesParamsWithTimeout(timeout time.Duration) *CreateFirewallPoliciesParams

NewCreateFirewallPoliciesParamsWithTimeout creates a new CreateFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*CreateFirewallPoliciesParams) SetBody

SetBody adds the body to the create firewall policies params

func (*CreateFirewallPoliciesParams) SetCloneID

func (o *CreateFirewallPoliciesParams) SetCloneID(cloneID *string)

SetCloneID adds the cloneId to the create firewall policies params

func (*CreateFirewallPoliciesParams) SetContext

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

SetContext adds the context to the create firewall policies params

func (*CreateFirewallPoliciesParams) SetDefaults

func (o *CreateFirewallPoliciesParams) SetDefaults()

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

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

func (*CreateFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create firewall policies params

func (*CreateFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the create firewall policies params

func (*CreateFirewallPoliciesParams) WithBody

WithBody adds the body to the create firewall policies params

func (*CreateFirewallPoliciesParams) WithCloneID

WithCloneID adds the cloneID to the create firewall policies params

func (*CreateFirewallPoliciesParams) WithContext

WithContext adds the context to the create firewall policies params

func (*CreateFirewallPoliciesParams) WithDefaults

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

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

func (*CreateFirewallPoliciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create firewall policies params

func (*CreateFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the create firewall policies params

func (*CreateFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateFirewallPoliciesReader

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

CreateFirewallPoliciesReader is a Reader for the CreateFirewallPolicies structure.

func (*CreateFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateFirewallPoliciesTooManyRequests

type CreateFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

CreateFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewCreateFirewallPoliciesTooManyRequests

func NewCreateFirewallPoliciesTooManyRequests() *CreateFirewallPoliciesTooManyRequests

NewCreateFirewallPoliciesTooManyRequests creates a CreateFirewallPoliciesTooManyRequests with default headers values

func (*CreateFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the create firewall policies too many requests response

func (*CreateFirewallPoliciesTooManyRequests) Error

func (*CreateFirewallPoliciesTooManyRequests) GetPayload

func (*CreateFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

func (o *CreateFirewallPoliciesTooManyRequests) IsClientError() bool

IsClientError returns true when this create firewall policies too many requests response has a 4xx status code

func (*CreateFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this create firewall policies too many requests response a status code equal to that given

func (*CreateFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this create firewall policies too many requests response has a 3xx status code

func (*CreateFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

func (o *CreateFirewallPoliciesTooManyRequests) IsServerError() bool

IsServerError returns true when this create firewall policies too many requests response has a 5xx status code

func (*CreateFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this create firewall policies too many requests response has a 2xx status code

func (*CreateFirewallPoliciesTooManyRequests) String added in v0.2.27

type DeleteFirewallPoliciesForbidden

type DeleteFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

DeleteFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewDeleteFirewallPoliciesForbidden

func NewDeleteFirewallPoliciesForbidden() *DeleteFirewallPoliciesForbidden

NewDeleteFirewallPoliciesForbidden creates a DeleteFirewallPoliciesForbidden with default headers values

func (*DeleteFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the delete firewall policies forbidden response

func (*DeleteFirewallPoliciesForbidden) Error

func (*DeleteFirewallPoliciesForbidden) GetPayload

func (*DeleteFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *DeleteFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this delete firewall policies forbidden response has a 4xx status code

func (*DeleteFirewallPoliciesForbidden) IsCode added in v0.2.27

func (o *DeleteFirewallPoliciesForbidden) IsCode(code int) bool

IsCode returns true when this delete firewall policies forbidden response a status code equal to that given

func (*DeleteFirewallPoliciesForbidden) IsRedirect added in v0.2.27

func (o *DeleteFirewallPoliciesForbidden) IsRedirect() bool

IsRedirect returns true when this delete firewall policies forbidden response has a 3xx status code

func (*DeleteFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *DeleteFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this delete firewall policies forbidden response has a 5xx status code

func (*DeleteFirewallPoliciesForbidden) IsSuccess added in v0.2.27

func (o *DeleteFirewallPoliciesForbidden) IsSuccess() bool

IsSuccess returns true when this delete firewall policies forbidden response has a 2xx status code

func (*DeleteFirewallPoliciesForbidden) String added in v0.2.27

type DeleteFirewallPoliciesInternalServerError

type DeleteFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

DeleteFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewDeleteFirewallPoliciesInternalServerError

func NewDeleteFirewallPoliciesInternalServerError() *DeleteFirewallPoliciesInternalServerError

NewDeleteFirewallPoliciesInternalServerError creates a DeleteFirewallPoliciesInternalServerError with default headers values

func (*DeleteFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the delete firewall policies internal server error response

func (*DeleteFirewallPoliciesInternalServerError) Error

func (*DeleteFirewallPoliciesInternalServerError) GetPayload

func (*DeleteFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this delete firewall policies internal server error response has a 4xx status code

func (*DeleteFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this delete firewall policies internal server error response a status code equal to that given

func (*DeleteFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this delete firewall policies internal server error response has a 3xx status code

func (*DeleteFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this delete firewall policies internal server error response has a 5xx status code

func (*DeleteFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this delete firewall policies internal server error response has a 2xx status code

func (*DeleteFirewallPoliciesInternalServerError) String added in v0.2.27

type DeleteFirewallPoliciesNotFound

type DeleteFirewallPoliciesNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

DeleteFirewallPoliciesNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteFirewallPoliciesNotFound

func NewDeleteFirewallPoliciesNotFound() *DeleteFirewallPoliciesNotFound

NewDeleteFirewallPoliciesNotFound creates a DeleteFirewallPoliciesNotFound with default headers values

func (*DeleteFirewallPoliciesNotFound) Code added in v0.2.33

Code gets the status code for the delete firewall policies not found response

func (*DeleteFirewallPoliciesNotFound) Error

func (*DeleteFirewallPoliciesNotFound) GetPayload

func (*DeleteFirewallPoliciesNotFound) IsClientError added in v0.2.27

func (o *DeleteFirewallPoliciesNotFound) IsClientError() bool

IsClientError returns true when this delete firewall policies not found response has a 4xx status code

func (*DeleteFirewallPoliciesNotFound) IsCode added in v0.2.27

func (o *DeleteFirewallPoliciesNotFound) IsCode(code int) bool

IsCode returns true when this delete firewall policies not found response a status code equal to that given

func (*DeleteFirewallPoliciesNotFound) IsRedirect added in v0.2.27

func (o *DeleteFirewallPoliciesNotFound) IsRedirect() bool

IsRedirect returns true when this delete firewall policies not found response has a 3xx status code

func (*DeleteFirewallPoliciesNotFound) IsServerError added in v0.2.27

func (o *DeleteFirewallPoliciesNotFound) IsServerError() bool

IsServerError returns true when this delete firewall policies not found response has a 5xx status code

func (*DeleteFirewallPoliciesNotFound) IsSuccess added in v0.2.27

func (o *DeleteFirewallPoliciesNotFound) IsSuccess() bool

IsSuccess returns true when this delete firewall policies not found response has a 2xx status code

func (*DeleteFirewallPoliciesNotFound) String added in v0.2.27

type DeleteFirewallPoliciesOK

type DeleteFirewallPoliciesOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

DeleteFirewallPoliciesOK describes a response with status code 200, with default header values.

OK

func NewDeleteFirewallPoliciesOK

func NewDeleteFirewallPoliciesOK() *DeleteFirewallPoliciesOK

NewDeleteFirewallPoliciesOK creates a DeleteFirewallPoliciesOK with default headers values

func (*DeleteFirewallPoliciesOK) Code added in v0.2.33

func (o *DeleteFirewallPoliciesOK) Code() int

Code gets the status code for the delete firewall policies o k response

func (*DeleteFirewallPoliciesOK) Error

func (o *DeleteFirewallPoliciesOK) Error() string

func (*DeleteFirewallPoliciesOK) GetPayload

func (*DeleteFirewallPoliciesOK) IsClientError added in v0.2.27

func (o *DeleteFirewallPoliciesOK) IsClientError() bool

IsClientError returns true when this delete firewall policies o k response has a 4xx status code

func (*DeleteFirewallPoliciesOK) IsCode added in v0.2.27

func (o *DeleteFirewallPoliciesOK) IsCode(code int) bool

IsCode returns true when this delete firewall policies o k response a status code equal to that given

func (*DeleteFirewallPoliciesOK) IsRedirect added in v0.2.27

func (o *DeleteFirewallPoliciesOK) IsRedirect() bool

IsRedirect returns true when this delete firewall policies o k response has a 3xx status code

func (*DeleteFirewallPoliciesOK) IsServerError added in v0.2.27

func (o *DeleteFirewallPoliciesOK) IsServerError() bool

IsServerError returns true when this delete firewall policies o k response has a 5xx status code

func (*DeleteFirewallPoliciesOK) IsSuccess added in v0.2.27

func (o *DeleteFirewallPoliciesOK) IsSuccess() bool

IsSuccess returns true when this delete firewall policies o k response has a 2xx status code

func (*DeleteFirewallPoliciesOK) String added in v0.2.27

func (o *DeleteFirewallPoliciesOK) String() string

type DeleteFirewallPoliciesParams

type DeleteFirewallPoliciesParams struct {

	/* Ids.

	   The IDs of the Firewall Policies to delete
	*/
	Ids []string

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

DeleteFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the delete firewall policies operation.

Typically these are written to a http.Request.

func NewDeleteFirewallPoliciesParams

func NewDeleteFirewallPoliciesParams() *DeleteFirewallPoliciesParams

NewDeleteFirewallPoliciesParams creates a new DeleteFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewDeleteFirewallPoliciesParamsWithContext

func NewDeleteFirewallPoliciesParamsWithContext(ctx context.Context) *DeleteFirewallPoliciesParams

NewDeleteFirewallPoliciesParamsWithContext creates a new DeleteFirewallPoliciesParams object with the ability to set a context for a request.

func NewDeleteFirewallPoliciesParamsWithHTTPClient

func NewDeleteFirewallPoliciesParamsWithHTTPClient(client *http.Client) *DeleteFirewallPoliciesParams

NewDeleteFirewallPoliciesParamsWithHTTPClient creates a new DeleteFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteFirewallPoliciesParamsWithTimeout

func NewDeleteFirewallPoliciesParamsWithTimeout(timeout time.Duration) *DeleteFirewallPoliciesParams

NewDeleteFirewallPoliciesParamsWithTimeout creates a new DeleteFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*DeleteFirewallPoliciesParams) SetContext

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

SetContext adds the context to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) SetDefaults

func (o *DeleteFirewallPoliciesParams) SetDefaults()

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

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

func (*DeleteFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) SetIds

func (o *DeleteFirewallPoliciesParams) SetIds(ids []string)

SetIds adds the ids to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) WithContext

WithContext adds the context to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) WithDefaults

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

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

func (*DeleteFirewallPoliciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) WithIds

WithIds adds the ids to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the delete firewall policies params

func (*DeleteFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteFirewallPoliciesReader

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

DeleteFirewallPoliciesReader is a Reader for the DeleteFirewallPolicies structure.

func (*DeleteFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteFirewallPoliciesTooManyRequests

type DeleteFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

DeleteFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeleteFirewallPoliciesTooManyRequests

func NewDeleteFirewallPoliciesTooManyRequests() *DeleteFirewallPoliciesTooManyRequests

NewDeleteFirewallPoliciesTooManyRequests creates a DeleteFirewallPoliciesTooManyRequests with default headers values

func (*DeleteFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the delete firewall policies too many requests response

func (*DeleteFirewallPoliciesTooManyRequests) Error

func (*DeleteFirewallPoliciesTooManyRequests) GetPayload

func (*DeleteFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

func (o *DeleteFirewallPoliciesTooManyRequests) IsClientError() bool

IsClientError returns true when this delete firewall policies too many requests response has a 4xx status code

func (*DeleteFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this delete firewall policies too many requests response a status code equal to that given

func (*DeleteFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this delete firewall policies too many requests response has a 3xx status code

func (*DeleteFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

func (o *DeleteFirewallPoliciesTooManyRequests) IsServerError() bool

IsServerError returns true when this delete firewall policies too many requests response has a 5xx status code

func (*DeleteFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this delete firewall policies too many requests response has a 2xx status code

func (*DeleteFirewallPoliciesTooManyRequests) String added in v0.2.27

type GetFirewallPoliciesForbidden

type GetFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

GetFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetFirewallPoliciesForbidden

func NewGetFirewallPoliciesForbidden() *GetFirewallPoliciesForbidden

NewGetFirewallPoliciesForbidden creates a GetFirewallPoliciesForbidden with default headers values

func (*GetFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the get firewall policies forbidden response

func (*GetFirewallPoliciesForbidden) Error

func (*GetFirewallPoliciesForbidden) GetPayload

func (*GetFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *GetFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this get firewall policies forbidden response has a 4xx status code

func (*GetFirewallPoliciesForbidden) IsCode added in v0.2.27

func (o *GetFirewallPoliciesForbidden) IsCode(code int) bool

IsCode returns true when this get firewall policies forbidden response a status code equal to that given

func (*GetFirewallPoliciesForbidden) IsRedirect added in v0.2.27

func (o *GetFirewallPoliciesForbidden) IsRedirect() bool

IsRedirect returns true when this get firewall policies forbidden response has a 3xx status code

func (*GetFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *GetFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this get firewall policies forbidden response has a 5xx status code

func (*GetFirewallPoliciesForbidden) IsSuccess added in v0.2.27

func (o *GetFirewallPoliciesForbidden) IsSuccess() bool

IsSuccess returns true when this get firewall policies forbidden response has a 2xx status code

func (*GetFirewallPoliciesForbidden) String added in v0.2.27

type GetFirewallPoliciesInternalServerError

type GetFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

GetFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewGetFirewallPoliciesInternalServerError

func NewGetFirewallPoliciesInternalServerError() *GetFirewallPoliciesInternalServerError

NewGetFirewallPoliciesInternalServerError creates a GetFirewallPoliciesInternalServerError with default headers values

func (*GetFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the get firewall policies internal server error response

func (*GetFirewallPoliciesInternalServerError) Error

func (*GetFirewallPoliciesInternalServerError) GetPayload

func (*GetFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

func (o *GetFirewallPoliciesInternalServerError) IsClientError() bool

IsClientError returns true when this get firewall policies internal server error response has a 4xx status code

func (*GetFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this get firewall policies internal server error response a status code equal to that given

func (*GetFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this get firewall policies internal server error response has a 3xx status code

func (*GetFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

func (o *GetFirewallPoliciesInternalServerError) IsServerError() bool

IsServerError returns true when this get firewall policies internal server error response has a 5xx status code

func (*GetFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this get firewall policies internal server error response has a 2xx status code

func (*GetFirewallPoliciesInternalServerError) String added in v0.2.27

type GetFirewallPoliciesNotFound

type GetFirewallPoliciesNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

GetFirewallPoliciesNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetFirewallPoliciesNotFound

func NewGetFirewallPoliciesNotFound() *GetFirewallPoliciesNotFound

NewGetFirewallPoliciesNotFound creates a GetFirewallPoliciesNotFound with default headers values

func (*GetFirewallPoliciesNotFound) Code added in v0.2.33

func (o *GetFirewallPoliciesNotFound) Code() int

Code gets the status code for the get firewall policies not found response

func (*GetFirewallPoliciesNotFound) Error

func (*GetFirewallPoliciesNotFound) GetPayload

func (*GetFirewallPoliciesNotFound) IsClientError added in v0.2.27

func (o *GetFirewallPoliciesNotFound) IsClientError() bool

IsClientError returns true when this get firewall policies not found response has a 4xx status code

func (*GetFirewallPoliciesNotFound) IsCode added in v0.2.27

func (o *GetFirewallPoliciesNotFound) IsCode(code int) bool

IsCode returns true when this get firewall policies not found response a status code equal to that given

func (*GetFirewallPoliciesNotFound) IsRedirect added in v0.2.27

func (o *GetFirewallPoliciesNotFound) IsRedirect() bool

IsRedirect returns true when this get firewall policies not found response has a 3xx status code

func (*GetFirewallPoliciesNotFound) IsServerError added in v0.2.27

func (o *GetFirewallPoliciesNotFound) IsServerError() bool

IsServerError returns true when this get firewall policies not found response has a 5xx status code

func (*GetFirewallPoliciesNotFound) IsSuccess added in v0.2.27

func (o *GetFirewallPoliciesNotFound) IsSuccess() bool

IsSuccess returns true when this get firewall policies not found response has a 2xx status code

func (*GetFirewallPoliciesNotFound) String added in v0.2.27

func (o *GetFirewallPoliciesNotFound) String() string

type GetFirewallPoliciesOK

type GetFirewallPoliciesOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

GetFirewallPoliciesOK describes a response with status code 200, with default header values.

OK

func NewGetFirewallPoliciesOK

func NewGetFirewallPoliciesOK() *GetFirewallPoliciesOK

NewGetFirewallPoliciesOK creates a GetFirewallPoliciesOK with default headers values

func (*GetFirewallPoliciesOK) Code added in v0.2.33

func (o *GetFirewallPoliciesOK) Code() int

Code gets the status code for the get firewall policies o k response

func (*GetFirewallPoliciesOK) Error

func (o *GetFirewallPoliciesOK) Error() string

func (*GetFirewallPoliciesOK) GetPayload

func (o *GetFirewallPoliciesOK) GetPayload() *models.FirewallRespV1

func (*GetFirewallPoliciesOK) IsClientError added in v0.2.27

func (o *GetFirewallPoliciesOK) IsClientError() bool

IsClientError returns true when this get firewall policies o k response has a 4xx status code

func (*GetFirewallPoliciesOK) IsCode added in v0.2.27

func (o *GetFirewallPoliciesOK) IsCode(code int) bool

IsCode returns true when this get firewall policies o k response a status code equal to that given

func (*GetFirewallPoliciesOK) IsRedirect added in v0.2.27

func (o *GetFirewallPoliciesOK) IsRedirect() bool

IsRedirect returns true when this get firewall policies o k response has a 3xx status code

func (*GetFirewallPoliciesOK) IsServerError added in v0.2.27

func (o *GetFirewallPoliciesOK) IsServerError() bool

IsServerError returns true when this get firewall policies o k response has a 5xx status code

func (*GetFirewallPoliciesOK) IsSuccess added in v0.2.27

func (o *GetFirewallPoliciesOK) IsSuccess() bool

IsSuccess returns true when this get firewall policies o k response has a 2xx status code

func (*GetFirewallPoliciesOK) String added in v0.2.27

func (o *GetFirewallPoliciesOK) String() string

type GetFirewallPoliciesParams

type GetFirewallPoliciesParams struct {

	/* Ids.

	   The IDs of the Firewall Policies to return
	*/
	Ids []string

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

GetFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the get firewall policies operation.

Typically these are written to a http.Request.

func NewGetFirewallPoliciesParams

func NewGetFirewallPoliciesParams() *GetFirewallPoliciesParams

NewGetFirewallPoliciesParams creates a new GetFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewGetFirewallPoliciesParamsWithContext

func NewGetFirewallPoliciesParamsWithContext(ctx context.Context) *GetFirewallPoliciesParams

NewGetFirewallPoliciesParamsWithContext creates a new GetFirewallPoliciesParams object with the ability to set a context for a request.

func NewGetFirewallPoliciesParamsWithHTTPClient

func NewGetFirewallPoliciesParamsWithHTTPClient(client *http.Client) *GetFirewallPoliciesParams

NewGetFirewallPoliciesParamsWithHTTPClient creates a new GetFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewGetFirewallPoliciesParamsWithTimeout

func NewGetFirewallPoliciesParamsWithTimeout(timeout time.Duration) *GetFirewallPoliciesParams

NewGetFirewallPoliciesParamsWithTimeout creates a new GetFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*GetFirewallPoliciesParams) SetContext

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

SetContext adds the context to the get firewall policies params

func (*GetFirewallPoliciesParams) SetDefaults

func (o *GetFirewallPoliciesParams) SetDefaults()

SetDefaults hydrates default values in the get firewall policies params (not the query body).

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

func (*GetFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get firewall policies params

func (*GetFirewallPoliciesParams) SetIds

func (o *GetFirewallPoliciesParams) SetIds(ids []string)

SetIds adds the ids to the get firewall policies params

func (*GetFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the get firewall policies params

func (*GetFirewallPoliciesParams) WithContext

WithContext adds the context to the get firewall policies params

func (*GetFirewallPoliciesParams) WithDefaults

WithDefaults hydrates default values in the get firewall policies params (not the query body).

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

func (*GetFirewallPoliciesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get firewall policies params

func (*GetFirewallPoliciesParams) WithIds

WithIds adds the ids to the get firewall policies params

func (*GetFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the get firewall policies params

func (*GetFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetFirewallPoliciesReader

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

GetFirewallPoliciesReader is a Reader for the GetFirewallPolicies structure.

func (*GetFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetFirewallPoliciesTooManyRequests

type GetFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

GetFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewGetFirewallPoliciesTooManyRequests

func NewGetFirewallPoliciesTooManyRequests() *GetFirewallPoliciesTooManyRequests

NewGetFirewallPoliciesTooManyRequests creates a GetFirewallPoliciesTooManyRequests with default headers values

func (*GetFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the get firewall policies too many requests response

func (*GetFirewallPoliciesTooManyRequests) Error

func (*GetFirewallPoliciesTooManyRequests) GetPayload

func (*GetFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

func (o *GetFirewallPoliciesTooManyRequests) IsClientError() bool

IsClientError returns true when this get firewall policies too many requests response has a 4xx status code

func (*GetFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this get firewall policies too many requests response a status code equal to that given

func (*GetFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

func (o *GetFirewallPoliciesTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get firewall policies too many requests response has a 3xx status code

func (*GetFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

func (o *GetFirewallPoliciesTooManyRequests) IsServerError() bool

IsServerError returns true when this get firewall policies too many requests response has a 5xx status code

func (*GetFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this get firewall policies too many requests response has a 2xx status code

func (*GetFirewallPoliciesTooManyRequests) String added in v0.2.27

type PerformFirewallPoliciesActionBadRequest

type PerformFirewallPoliciesActionBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

PerformFirewallPoliciesActionBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewPerformFirewallPoliciesActionBadRequest

func NewPerformFirewallPoliciesActionBadRequest() *PerformFirewallPoliciesActionBadRequest

NewPerformFirewallPoliciesActionBadRequest creates a PerformFirewallPoliciesActionBadRequest with default headers values

func (*PerformFirewallPoliciesActionBadRequest) Code added in v0.2.33

Code gets the status code for the perform firewall policies action bad request response

func (*PerformFirewallPoliciesActionBadRequest) Error

func (*PerformFirewallPoliciesActionBadRequest) GetPayload

func (*PerformFirewallPoliciesActionBadRequest) IsClientError added in v0.2.27

func (o *PerformFirewallPoliciesActionBadRequest) IsClientError() bool

IsClientError returns true when this perform firewall policies action bad request response has a 4xx status code

func (*PerformFirewallPoliciesActionBadRequest) IsCode added in v0.2.27

IsCode returns true when this perform firewall policies action bad request response a status code equal to that given

func (*PerformFirewallPoliciesActionBadRequest) IsRedirect added in v0.2.27

IsRedirect returns true when this perform firewall policies action bad request response has a 3xx status code

func (*PerformFirewallPoliciesActionBadRequest) IsServerError added in v0.2.27

func (o *PerformFirewallPoliciesActionBadRequest) IsServerError() bool

IsServerError returns true when this perform firewall policies action bad request response has a 5xx status code

func (*PerformFirewallPoliciesActionBadRequest) IsSuccess added in v0.2.27

IsSuccess returns true when this perform firewall policies action bad request response has a 2xx status code

func (*PerformFirewallPoliciesActionBadRequest) String added in v0.2.27

type PerformFirewallPoliciesActionForbidden

type PerformFirewallPoliciesActionForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

PerformFirewallPoliciesActionForbidden describes a response with status code 403, with default header values.

Forbidden

func NewPerformFirewallPoliciesActionForbidden

func NewPerformFirewallPoliciesActionForbidden() *PerformFirewallPoliciesActionForbidden

NewPerformFirewallPoliciesActionForbidden creates a PerformFirewallPoliciesActionForbidden with default headers values

func (*PerformFirewallPoliciesActionForbidden) Code added in v0.2.33

Code gets the status code for the perform firewall policies action forbidden response

func (*PerformFirewallPoliciesActionForbidden) Error

func (*PerformFirewallPoliciesActionForbidden) GetPayload

func (*PerformFirewallPoliciesActionForbidden) IsClientError added in v0.2.27

func (o *PerformFirewallPoliciesActionForbidden) IsClientError() bool

IsClientError returns true when this perform firewall policies action forbidden response has a 4xx status code

func (*PerformFirewallPoliciesActionForbidden) IsCode added in v0.2.27

IsCode returns true when this perform firewall policies action forbidden response a status code equal to that given

func (*PerformFirewallPoliciesActionForbidden) IsRedirect added in v0.2.27

IsRedirect returns true when this perform firewall policies action forbidden response has a 3xx status code

func (*PerformFirewallPoliciesActionForbidden) IsServerError added in v0.2.27

func (o *PerformFirewallPoliciesActionForbidden) IsServerError() bool

IsServerError returns true when this perform firewall policies action forbidden response has a 5xx status code

func (*PerformFirewallPoliciesActionForbidden) IsSuccess added in v0.2.27

IsSuccess returns true when this perform firewall policies action forbidden response has a 2xx status code

func (*PerformFirewallPoliciesActionForbidden) String added in v0.2.27

type PerformFirewallPoliciesActionInternalServerError

type PerformFirewallPoliciesActionInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

PerformFirewallPoliciesActionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewPerformFirewallPoliciesActionInternalServerError

func NewPerformFirewallPoliciesActionInternalServerError() *PerformFirewallPoliciesActionInternalServerError

NewPerformFirewallPoliciesActionInternalServerError creates a PerformFirewallPoliciesActionInternalServerError with default headers values

func (*PerformFirewallPoliciesActionInternalServerError) Code added in v0.2.33

Code gets the status code for the perform firewall policies action internal server error response

func (*PerformFirewallPoliciesActionInternalServerError) Error

func (*PerformFirewallPoliciesActionInternalServerError) GetPayload

func (*PerformFirewallPoliciesActionInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this perform firewall policies action internal server error response has a 4xx status code

func (*PerformFirewallPoliciesActionInternalServerError) IsCode added in v0.2.27

IsCode returns true when this perform firewall policies action internal server error response a status code equal to that given

func (*PerformFirewallPoliciesActionInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this perform firewall policies action internal server error response has a 3xx status code

func (*PerformFirewallPoliciesActionInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this perform firewall policies action internal server error response has a 5xx status code

func (*PerformFirewallPoliciesActionInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this perform firewall policies action internal server error response has a 2xx status code

func (*PerformFirewallPoliciesActionInternalServerError) String added in v0.2.27

type PerformFirewallPoliciesActionNotFound

type PerformFirewallPoliciesActionNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

PerformFirewallPoliciesActionNotFound describes a response with status code 404, with default header values.

Not Found

func NewPerformFirewallPoliciesActionNotFound

func NewPerformFirewallPoliciesActionNotFound() *PerformFirewallPoliciesActionNotFound

NewPerformFirewallPoliciesActionNotFound creates a PerformFirewallPoliciesActionNotFound with default headers values

func (*PerformFirewallPoliciesActionNotFound) Code added in v0.2.33

Code gets the status code for the perform firewall policies action not found response

func (*PerformFirewallPoliciesActionNotFound) Error

func (*PerformFirewallPoliciesActionNotFound) GetPayload

func (*PerformFirewallPoliciesActionNotFound) IsClientError added in v0.2.27

func (o *PerformFirewallPoliciesActionNotFound) IsClientError() bool

IsClientError returns true when this perform firewall policies action not found response has a 4xx status code

func (*PerformFirewallPoliciesActionNotFound) IsCode added in v0.2.27

IsCode returns true when this perform firewall policies action not found response a status code equal to that given

func (*PerformFirewallPoliciesActionNotFound) IsRedirect added in v0.2.27

IsRedirect returns true when this perform firewall policies action not found response has a 3xx status code

func (*PerformFirewallPoliciesActionNotFound) IsServerError added in v0.2.27

func (o *PerformFirewallPoliciesActionNotFound) IsServerError() bool

IsServerError returns true when this perform firewall policies action not found response has a 5xx status code

func (*PerformFirewallPoliciesActionNotFound) IsSuccess added in v0.2.27

IsSuccess returns true when this perform firewall policies action not found response has a 2xx status code

func (*PerformFirewallPoliciesActionNotFound) String added in v0.2.27

type PerformFirewallPoliciesActionOK

type PerformFirewallPoliciesActionOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

PerformFirewallPoliciesActionOK describes a response with status code 200, with default header values.

OK

func NewPerformFirewallPoliciesActionOK

func NewPerformFirewallPoliciesActionOK() *PerformFirewallPoliciesActionOK

NewPerformFirewallPoliciesActionOK creates a PerformFirewallPoliciesActionOK with default headers values

func (*PerformFirewallPoliciesActionOK) Code added in v0.2.33

Code gets the status code for the perform firewall policies action o k response

func (*PerformFirewallPoliciesActionOK) Error

func (*PerformFirewallPoliciesActionOK) GetPayload

func (*PerformFirewallPoliciesActionOK) IsClientError added in v0.2.27

func (o *PerformFirewallPoliciesActionOK) IsClientError() bool

IsClientError returns true when this perform firewall policies action o k response has a 4xx status code

func (*PerformFirewallPoliciesActionOK) IsCode added in v0.2.27

func (o *PerformFirewallPoliciesActionOK) IsCode(code int) bool

IsCode returns true when this perform firewall policies action o k response a status code equal to that given

func (*PerformFirewallPoliciesActionOK) IsRedirect added in v0.2.27

func (o *PerformFirewallPoliciesActionOK) IsRedirect() bool

IsRedirect returns true when this perform firewall policies action o k response has a 3xx status code

func (*PerformFirewallPoliciesActionOK) IsServerError added in v0.2.27

func (o *PerformFirewallPoliciesActionOK) IsServerError() bool

IsServerError returns true when this perform firewall policies action o k response has a 5xx status code

func (*PerformFirewallPoliciesActionOK) IsSuccess added in v0.2.27

func (o *PerformFirewallPoliciesActionOK) IsSuccess() bool

IsSuccess returns true when this perform firewall policies action o k response has a 2xx status code

func (*PerformFirewallPoliciesActionOK) String added in v0.2.27

type PerformFirewallPoliciesActionParams

type PerformFirewallPoliciesActionParams struct {

	/* ActionName.

	   The action to perform
	*/
	ActionName string

	// Body.
	Body *models.MsaEntityActionRequestV2

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

PerformFirewallPoliciesActionParams contains all the parameters to send to the API endpoint

for the perform firewall policies action operation.

Typically these are written to a http.Request.

func NewPerformFirewallPoliciesActionParams

func NewPerformFirewallPoliciesActionParams() *PerformFirewallPoliciesActionParams

NewPerformFirewallPoliciesActionParams creates a new PerformFirewallPoliciesActionParams object, with the default timeout for this client.

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

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

func NewPerformFirewallPoliciesActionParamsWithContext

func NewPerformFirewallPoliciesActionParamsWithContext(ctx context.Context) *PerformFirewallPoliciesActionParams

NewPerformFirewallPoliciesActionParamsWithContext creates a new PerformFirewallPoliciesActionParams object with the ability to set a context for a request.

func NewPerformFirewallPoliciesActionParamsWithHTTPClient

func NewPerformFirewallPoliciesActionParamsWithHTTPClient(client *http.Client) *PerformFirewallPoliciesActionParams

NewPerformFirewallPoliciesActionParamsWithHTTPClient creates a new PerformFirewallPoliciesActionParams object with the ability to set a custom HTTPClient for a request.

func NewPerformFirewallPoliciesActionParamsWithTimeout

func NewPerformFirewallPoliciesActionParamsWithTimeout(timeout time.Duration) *PerformFirewallPoliciesActionParams

NewPerformFirewallPoliciesActionParamsWithTimeout creates a new PerformFirewallPoliciesActionParams object with the ability to set a timeout on a request.

func (*PerformFirewallPoliciesActionParams) SetActionName

func (o *PerformFirewallPoliciesActionParams) SetActionName(actionName string)

SetActionName adds the actionName to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) SetBody

SetBody adds the body to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) SetContext

SetContext adds the context to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) SetDefaults

func (o *PerformFirewallPoliciesActionParams) SetDefaults()

SetDefaults hydrates default values in the perform firewall policies action params (not the query body).

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

func (*PerformFirewallPoliciesActionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) SetTimeout

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

SetTimeout adds the timeout to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WithActionName

WithActionName adds the actionName to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WithBody

WithBody adds the body to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WithContext

WithContext adds the context to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WithDefaults

WithDefaults hydrates default values in the perform firewall policies action params (not the query body).

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

func (*PerformFirewallPoliciesActionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WithTimeout

WithTimeout adds the timeout to the perform firewall policies action params

func (*PerformFirewallPoliciesActionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PerformFirewallPoliciesActionReader

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

PerformFirewallPoliciesActionReader is a Reader for the PerformFirewallPoliciesAction structure.

func (*PerformFirewallPoliciesActionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PerformFirewallPoliciesActionTooManyRequests

type PerformFirewallPoliciesActionTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

PerformFirewallPoliciesActionTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewPerformFirewallPoliciesActionTooManyRequests

func NewPerformFirewallPoliciesActionTooManyRequests() *PerformFirewallPoliciesActionTooManyRequests

NewPerformFirewallPoliciesActionTooManyRequests creates a PerformFirewallPoliciesActionTooManyRequests with default headers values

func (*PerformFirewallPoliciesActionTooManyRequests) Code added in v0.2.33

Code gets the status code for the perform firewall policies action too many requests response

func (*PerformFirewallPoliciesActionTooManyRequests) Error

func (*PerformFirewallPoliciesActionTooManyRequests) GetPayload

func (*PerformFirewallPoliciesActionTooManyRequests) IsClientError added in v0.2.27

IsClientError returns true when this perform firewall policies action too many requests response has a 4xx status code

func (*PerformFirewallPoliciesActionTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this perform firewall policies action too many requests response a status code equal to that given

func (*PerformFirewallPoliciesActionTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this perform firewall policies action too many requests response has a 3xx status code

func (*PerformFirewallPoliciesActionTooManyRequests) IsServerError added in v0.2.27

IsServerError returns true when this perform firewall policies action too many requests response has a 5xx status code

func (*PerformFirewallPoliciesActionTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this perform firewall policies action too many requests response has a 2xx status code

func (*PerformFirewallPoliciesActionTooManyRequests) String added in v0.2.27

type QueryCombinedFirewallPoliciesBadRequest

type QueryCombinedFirewallPoliciesBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

QueryCombinedFirewallPoliciesBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewQueryCombinedFirewallPoliciesBadRequest

func NewQueryCombinedFirewallPoliciesBadRequest() *QueryCombinedFirewallPoliciesBadRequest

NewQueryCombinedFirewallPoliciesBadRequest creates a QueryCombinedFirewallPoliciesBadRequest with default headers values

func (*QueryCombinedFirewallPoliciesBadRequest) Code added in v0.2.33

Code gets the status code for the query combined firewall policies bad request response

func (*QueryCombinedFirewallPoliciesBadRequest) Error

func (*QueryCombinedFirewallPoliciesBadRequest) GetPayload

func (*QueryCombinedFirewallPoliciesBadRequest) IsClientError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesBadRequest) IsClientError() bool

IsClientError returns true when this query combined firewall policies bad request response has a 4xx status code

func (*QueryCombinedFirewallPoliciesBadRequest) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policies bad request response a status code equal to that given

func (*QueryCombinedFirewallPoliciesBadRequest) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policies bad request response has a 3xx status code

func (*QueryCombinedFirewallPoliciesBadRequest) IsServerError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesBadRequest) IsServerError() bool

IsServerError returns true when this query combined firewall policies bad request response has a 5xx status code

func (*QueryCombinedFirewallPoliciesBadRequest) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policies bad request response has a 2xx status code

func (*QueryCombinedFirewallPoliciesBadRequest) String added in v0.2.27

type QueryCombinedFirewallPoliciesForbidden

type QueryCombinedFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

QueryCombinedFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewQueryCombinedFirewallPoliciesForbidden

func NewQueryCombinedFirewallPoliciesForbidden() *QueryCombinedFirewallPoliciesForbidden

NewQueryCombinedFirewallPoliciesForbidden creates a QueryCombinedFirewallPoliciesForbidden with default headers values

func (*QueryCombinedFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the query combined firewall policies forbidden response

func (*QueryCombinedFirewallPoliciesForbidden) Error

func (*QueryCombinedFirewallPoliciesForbidden) GetPayload

func (*QueryCombinedFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this query combined firewall policies forbidden response has a 4xx status code

func (*QueryCombinedFirewallPoliciesForbidden) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policies forbidden response a status code equal to that given

func (*QueryCombinedFirewallPoliciesForbidden) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policies forbidden response has a 3xx status code

func (*QueryCombinedFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this query combined firewall policies forbidden response has a 5xx status code

func (*QueryCombinedFirewallPoliciesForbidden) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policies forbidden response has a 2xx status code

func (*QueryCombinedFirewallPoliciesForbidden) String added in v0.2.27

type QueryCombinedFirewallPoliciesInternalServerError

type QueryCombinedFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

QueryCombinedFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewQueryCombinedFirewallPoliciesInternalServerError

func NewQueryCombinedFirewallPoliciesInternalServerError() *QueryCombinedFirewallPoliciesInternalServerError

NewQueryCombinedFirewallPoliciesInternalServerError creates a QueryCombinedFirewallPoliciesInternalServerError with default headers values

func (*QueryCombinedFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the query combined firewall policies internal server error response

func (*QueryCombinedFirewallPoliciesInternalServerError) Error

func (*QueryCombinedFirewallPoliciesInternalServerError) GetPayload

func (*QueryCombinedFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policies internal server error response has a 4xx status code

func (*QueryCombinedFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policies internal server error response a status code equal to that given

func (*QueryCombinedFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policies internal server error response has a 3xx status code

func (*QueryCombinedFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policies internal server error response has a 5xx status code

func (*QueryCombinedFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policies internal server error response has a 2xx status code

func (*QueryCombinedFirewallPoliciesInternalServerError) String added in v0.2.27

type QueryCombinedFirewallPoliciesOK

type QueryCombinedFirewallPoliciesOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

QueryCombinedFirewallPoliciesOK describes a response with status code 200, with default header values.

OK

func NewQueryCombinedFirewallPoliciesOK

func NewQueryCombinedFirewallPoliciesOK() *QueryCombinedFirewallPoliciesOK

NewQueryCombinedFirewallPoliciesOK creates a QueryCombinedFirewallPoliciesOK with default headers values

func (*QueryCombinedFirewallPoliciesOK) Code added in v0.2.33

Code gets the status code for the query combined firewall policies o k response

func (*QueryCombinedFirewallPoliciesOK) Error

func (*QueryCombinedFirewallPoliciesOK) GetPayload

func (*QueryCombinedFirewallPoliciesOK) IsClientError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesOK) IsClientError() bool

IsClientError returns true when this query combined firewall policies o k response has a 4xx status code

func (*QueryCombinedFirewallPoliciesOK) IsCode added in v0.2.27

func (o *QueryCombinedFirewallPoliciesOK) IsCode(code int) bool

IsCode returns true when this query combined firewall policies o k response a status code equal to that given

func (*QueryCombinedFirewallPoliciesOK) IsRedirect added in v0.2.27

func (o *QueryCombinedFirewallPoliciesOK) IsRedirect() bool

IsRedirect returns true when this query combined firewall policies o k response has a 3xx status code

func (*QueryCombinedFirewallPoliciesOK) IsServerError added in v0.2.27

func (o *QueryCombinedFirewallPoliciesOK) IsServerError() bool

IsServerError returns true when this query combined firewall policies o k response has a 5xx status code

func (*QueryCombinedFirewallPoliciesOK) IsSuccess added in v0.2.27

func (o *QueryCombinedFirewallPoliciesOK) IsSuccess() bool

IsSuccess returns true when this query combined firewall policies o k response has a 2xx status code

func (*QueryCombinedFirewallPoliciesOK) String added in v0.2.27

type QueryCombinedFirewallPoliciesParams

type QueryCombinedFirewallPoliciesParams struct {

	/* Filter.

	   The filter expression that should be used to limit the results
	*/
	Filter *string

	/* Limit.

	   The maximum records to return. [1-5000]
	*/
	Limit *int64

	/* Offset.

	   The offset to start retrieving records from
	*/
	Offset *int64

	/* Sort.

	   The property to sort by
	*/
	Sort *string

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

QueryCombinedFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the query combined firewall policies operation.

Typically these are written to a http.Request.

func NewQueryCombinedFirewallPoliciesParams

func NewQueryCombinedFirewallPoliciesParams() *QueryCombinedFirewallPoliciesParams

NewQueryCombinedFirewallPoliciesParams creates a new QueryCombinedFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewQueryCombinedFirewallPoliciesParamsWithContext

func NewQueryCombinedFirewallPoliciesParamsWithContext(ctx context.Context) *QueryCombinedFirewallPoliciesParams

NewQueryCombinedFirewallPoliciesParamsWithContext creates a new QueryCombinedFirewallPoliciesParams object with the ability to set a context for a request.

func NewQueryCombinedFirewallPoliciesParamsWithHTTPClient

func NewQueryCombinedFirewallPoliciesParamsWithHTTPClient(client *http.Client) *QueryCombinedFirewallPoliciesParams

NewQueryCombinedFirewallPoliciesParamsWithHTTPClient creates a new QueryCombinedFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewQueryCombinedFirewallPoliciesParamsWithTimeout

func NewQueryCombinedFirewallPoliciesParamsWithTimeout(timeout time.Duration) *QueryCombinedFirewallPoliciesParams

NewQueryCombinedFirewallPoliciesParamsWithTimeout creates a new QueryCombinedFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*QueryCombinedFirewallPoliciesParams) SetContext

SetContext adds the context to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetDefaults

func (o *QueryCombinedFirewallPoliciesParams) SetDefaults()

SetDefaults hydrates default values in the query combined firewall policies params (not the query body).

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

func (*QueryCombinedFirewallPoliciesParams) SetFilter

func (o *QueryCombinedFirewallPoliciesParams) SetFilter(filter *string)

SetFilter adds the filter to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetLimit

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

SetLimit adds the limit to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetOffset

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

SetOffset adds the offset to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetSort

func (o *QueryCombinedFirewallPoliciesParams) SetSort(sort *string)

SetSort adds the sort to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithContext

WithContext adds the context to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithDefaults

WithDefaults hydrates default values in the query combined firewall policies params (not the query body).

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

func (*QueryCombinedFirewallPoliciesParams) WithFilter

WithFilter adds the filter to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithLimit

WithLimit adds the limit to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithOffset

WithOffset adds the offset to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithSort

WithSort adds the sort to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the query combined firewall policies params

func (*QueryCombinedFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryCombinedFirewallPoliciesReader

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

QueryCombinedFirewallPoliciesReader is a Reader for the QueryCombinedFirewallPolicies structure.

func (*QueryCombinedFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryCombinedFirewallPoliciesTooManyRequests

type QueryCombinedFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

QueryCombinedFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewQueryCombinedFirewallPoliciesTooManyRequests

func NewQueryCombinedFirewallPoliciesTooManyRequests() *QueryCombinedFirewallPoliciesTooManyRequests

NewQueryCombinedFirewallPoliciesTooManyRequests creates a QueryCombinedFirewallPoliciesTooManyRequests with default headers values

func (*QueryCombinedFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the query combined firewall policies too many requests response

func (*QueryCombinedFirewallPoliciesTooManyRequests) Error

func (*QueryCombinedFirewallPoliciesTooManyRequests) GetPayload

func (*QueryCombinedFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policies too many requests response has a 4xx status code

func (*QueryCombinedFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policies too many requests response a status code equal to that given

func (*QueryCombinedFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policies too many requests response has a 3xx status code

func (*QueryCombinedFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policies too many requests response has a 5xx status code

func (*QueryCombinedFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policies too many requests response has a 2xx status code

func (*QueryCombinedFirewallPoliciesTooManyRequests) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersBadRequest

type QueryCombinedFirewallPolicyMembersBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.BasePolicyMembersRespV1
}

QueryCombinedFirewallPolicyMembersBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewQueryCombinedFirewallPolicyMembersBadRequest

func NewQueryCombinedFirewallPolicyMembersBadRequest() *QueryCombinedFirewallPolicyMembersBadRequest

NewQueryCombinedFirewallPolicyMembersBadRequest creates a QueryCombinedFirewallPolicyMembersBadRequest with default headers values

func (*QueryCombinedFirewallPolicyMembersBadRequest) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members bad request response

func (*QueryCombinedFirewallPolicyMembersBadRequest) Error

func (*QueryCombinedFirewallPolicyMembersBadRequest) GetPayload

func (*QueryCombinedFirewallPolicyMembersBadRequest) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policy members bad request response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersBadRequest) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members bad request response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersBadRequest) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members bad request response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersBadRequest) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policy members bad request response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersBadRequest) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members bad request response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersBadRequest) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersForbidden

type QueryCombinedFirewallPolicyMembersForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

QueryCombinedFirewallPolicyMembersForbidden describes a response with status code 403, with default header values.

Forbidden

func NewQueryCombinedFirewallPolicyMembersForbidden

func NewQueryCombinedFirewallPolicyMembersForbidden() *QueryCombinedFirewallPolicyMembersForbidden

NewQueryCombinedFirewallPolicyMembersForbidden creates a QueryCombinedFirewallPolicyMembersForbidden with default headers values

func (*QueryCombinedFirewallPolicyMembersForbidden) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members forbidden response

func (*QueryCombinedFirewallPolicyMembersForbidden) Error

func (*QueryCombinedFirewallPolicyMembersForbidden) GetPayload

func (*QueryCombinedFirewallPolicyMembersForbidden) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policy members forbidden response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersForbidden) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members forbidden response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersForbidden) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members forbidden response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersForbidden) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policy members forbidden response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersForbidden) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members forbidden response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersForbidden) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersInternalServerError

type QueryCombinedFirewallPolicyMembersInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.BasePolicyMembersRespV1
}

QueryCombinedFirewallPolicyMembersInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewQueryCombinedFirewallPolicyMembersInternalServerError

func NewQueryCombinedFirewallPolicyMembersInternalServerError() *QueryCombinedFirewallPolicyMembersInternalServerError

NewQueryCombinedFirewallPolicyMembersInternalServerError creates a QueryCombinedFirewallPolicyMembersInternalServerError with default headers values

func (*QueryCombinedFirewallPolicyMembersInternalServerError) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members internal server error response

func (*QueryCombinedFirewallPolicyMembersInternalServerError) Error

func (*QueryCombinedFirewallPolicyMembersInternalServerError) GetPayload

func (*QueryCombinedFirewallPolicyMembersInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policy members internal server error response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersInternalServerError) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members internal server error response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members internal server error response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policy members internal server error response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members internal server error response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersInternalServerError) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersNotFound

type QueryCombinedFirewallPolicyMembersNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.BasePolicyMembersRespV1
}

QueryCombinedFirewallPolicyMembersNotFound describes a response with status code 404, with default header values.

Not Found

func NewQueryCombinedFirewallPolicyMembersNotFound

func NewQueryCombinedFirewallPolicyMembersNotFound() *QueryCombinedFirewallPolicyMembersNotFound

NewQueryCombinedFirewallPolicyMembersNotFound creates a QueryCombinedFirewallPolicyMembersNotFound with default headers values

func (*QueryCombinedFirewallPolicyMembersNotFound) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members not found response

func (*QueryCombinedFirewallPolicyMembersNotFound) Error

func (*QueryCombinedFirewallPolicyMembersNotFound) GetPayload

func (*QueryCombinedFirewallPolicyMembersNotFound) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policy members not found response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersNotFound) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members not found response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersNotFound) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members not found response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersNotFound) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policy members not found response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersNotFound) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members not found response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersNotFound) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersOK

type QueryCombinedFirewallPolicyMembersOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.BasePolicyMembersRespV1
}

QueryCombinedFirewallPolicyMembersOK describes a response with status code 200, with default header values.

OK

func NewQueryCombinedFirewallPolicyMembersOK

func NewQueryCombinedFirewallPolicyMembersOK() *QueryCombinedFirewallPolicyMembersOK

NewQueryCombinedFirewallPolicyMembersOK creates a QueryCombinedFirewallPolicyMembersOK with default headers values

func (*QueryCombinedFirewallPolicyMembersOK) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members o k response

func (*QueryCombinedFirewallPolicyMembersOK) Error

func (*QueryCombinedFirewallPolicyMembersOK) GetPayload

func (*QueryCombinedFirewallPolicyMembersOK) IsClientError added in v0.2.27

func (o *QueryCombinedFirewallPolicyMembersOK) IsClientError() bool

IsClientError returns true when this query combined firewall policy members o k response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersOK) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members o k response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersOK) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members o k response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersOK) IsServerError added in v0.2.27

func (o *QueryCombinedFirewallPolicyMembersOK) IsServerError() bool

IsServerError returns true when this query combined firewall policy members o k response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersOK) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members o k response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersOK) String added in v0.2.27

type QueryCombinedFirewallPolicyMembersParams

type QueryCombinedFirewallPolicyMembersParams struct {

	/* Filter.

	   The filter expression that should be used to limit the results
	*/
	Filter *string

	/* ID.

	   The ID of the Firewall Policy to search for members of
	*/
	ID *string

	/* Limit.

	   The maximum records to return. [1-5000]
	*/
	Limit *int64

	/* Offset.

	   The offset to start retrieving records from
	*/
	Offset *int64

	/* Sort.

	   The property to sort by
	*/
	Sort *string

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

QueryCombinedFirewallPolicyMembersParams contains all the parameters to send to the API endpoint

for the query combined firewall policy members operation.

Typically these are written to a http.Request.

func NewQueryCombinedFirewallPolicyMembersParams

func NewQueryCombinedFirewallPolicyMembersParams() *QueryCombinedFirewallPolicyMembersParams

NewQueryCombinedFirewallPolicyMembersParams creates a new QueryCombinedFirewallPolicyMembersParams object, with the default timeout for this client.

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

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

func NewQueryCombinedFirewallPolicyMembersParamsWithContext

func NewQueryCombinedFirewallPolicyMembersParamsWithContext(ctx context.Context) *QueryCombinedFirewallPolicyMembersParams

NewQueryCombinedFirewallPolicyMembersParamsWithContext creates a new QueryCombinedFirewallPolicyMembersParams object with the ability to set a context for a request.

func NewQueryCombinedFirewallPolicyMembersParamsWithHTTPClient

func NewQueryCombinedFirewallPolicyMembersParamsWithHTTPClient(client *http.Client) *QueryCombinedFirewallPolicyMembersParams

NewQueryCombinedFirewallPolicyMembersParamsWithHTTPClient creates a new QueryCombinedFirewallPolicyMembersParams object with the ability to set a custom HTTPClient for a request.

func NewQueryCombinedFirewallPolicyMembersParamsWithTimeout

func NewQueryCombinedFirewallPolicyMembersParamsWithTimeout(timeout time.Duration) *QueryCombinedFirewallPolicyMembersParams

NewQueryCombinedFirewallPolicyMembersParamsWithTimeout creates a new QueryCombinedFirewallPolicyMembersParams object with the ability to set a timeout on a request.

func (*QueryCombinedFirewallPolicyMembersParams) SetContext

SetContext adds the context to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetDefaults

SetDefaults hydrates default values in the query combined firewall policy members params (not the query body).

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

func (*QueryCombinedFirewallPolicyMembersParams) SetFilter

func (o *QueryCombinedFirewallPolicyMembersParams) SetFilter(filter *string)

SetFilter adds the filter to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetID

SetID adds the id to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetLimit

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

SetLimit adds the limit to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetOffset

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

SetOffset adds the offset to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetSort

SetSort adds the sort to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) SetTimeout

SetTimeout adds the timeout to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithContext

WithContext adds the context to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithDefaults

WithDefaults hydrates default values in the query combined firewall policy members params (not the query body).

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

func (*QueryCombinedFirewallPolicyMembersParams) WithFilter

WithFilter adds the filter to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithID

WithID adds the id to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithLimit

WithLimit adds the limit to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithOffset

WithOffset adds the offset to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithSort

WithSort adds the sort to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WithTimeout

WithTimeout adds the timeout to the query combined firewall policy members params

func (*QueryCombinedFirewallPolicyMembersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryCombinedFirewallPolicyMembersReader

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

QueryCombinedFirewallPolicyMembersReader is a Reader for the QueryCombinedFirewallPolicyMembers structure.

func (*QueryCombinedFirewallPolicyMembersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryCombinedFirewallPolicyMembersTooManyRequests

type QueryCombinedFirewallPolicyMembersTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

QueryCombinedFirewallPolicyMembersTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewQueryCombinedFirewallPolicyMembersTooManyRequests

func NewQueryCombinedFirewallPolicyMembersTooManyRequests() *QueryCombinedFirewallPolicyMembersTooManyRequests

NewQueryCombinedFirewallPolicyMembersTooManyRequests creates a QueryCombinedFirewallPolicyMembersTooManyRequests with default headers values

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) Code added in v0.2.33

Code gets the status code for the query combined firewall policy members too many requests response

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) Error

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) GetPayload

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) IsClientError added in v0.2.27

IsClientError returns true when this query combined firewall policy members too many requests response has a 4xx status code

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this query combined firewall policy members too many requests response a status code equal to that given

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this query combined firewall policy members too many requests response has a 3xx status code

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) IsServerError added in v0.2.27

IsServerError returns true when this query combined firewall policy members too many requests response has a 5xx status code

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this query combined firewall policy members too many requests response has a 2xx status code

func (*QueryCombinedFirewallPolicyMembersTooManyRequests) String added in v0.2.27

type QueryFirewallPoliciesBadRequest

type QueryFirewallPoliciesBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPoliciesBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewQueryFirewallPoliciesBadRequest

func NewQueryFirewallPoliciesBadRequest() *QueryFirewallPoliciesBadRequest

NewQueryFirewallPoliciesBadRequest creates a QueryFirewallPoliciesBadRequest with default headers values

func (*QueryFirewallPoliciesBadRequest) Code added in v0.2.33

Code gets the status code for the query firewall policies bad request response

func (*QueryFirewallPoliciesBadRequest) Error

func (*QueryFirewallPoliciesBadRequest) GetPayload

func (*QueryFirewallPoliciesBadRequest) IsClientError added in v0.2.27

func (o *QueryFirewallPoliciesBadRequest) IsClientError() bool

IsClientError returns true when this query firewall policies bad request response has a 4xx status code

func (*QueryFirewallPoliciesBadRequest) IsCode added in v0.2.27

func (o *QueryFirewallPoliciesBadRequest) IsCode(code int) bool

IsCode returns true when this query firewall policies bad request response a status code equal to that given

func (*QueryFirewallPoliciesBadRequest) IsRedirect added in v0.2.27

func (o *QueryFirewallPoliciesBadRequest) IsRedirect() bool

IsRedirect returns true when this query firewall policies bad request response has a 3xx status code

func (*QueryFirewallPoliciesBadRequest) IsServerError added in v0.2.27

func (o *QueryFirewallPoliciesBadRequest) IsServerError() bool

IsServerError returns true when this query firewall policies bad request response has a 5xx status code

func (*QueryFirewallPoliciesBadRequest) IsSuccess added in v0.2.27

func (o *QueryFirewallPoliciesBadRequest) IsSuccess() bool

IsSuccess returns true when this query firewall policies bad request response has a 2xx status code

func (*QueryFirewallPoliciesBadRequest) String added in v0.2.27

type QueryFirewallPoliciesForbidden

type QueryFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

QueryFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewQueryFirewallPoliciesForbidden

func NewQueryFirewallPoliciesForbidden() *QueryFirewallPoliciesForbidden

NewQueryFirewallPoliciesForbidden creates a QueryFirewallPoliciesForbidden with default headers values

func (*QueryFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the query firewall policies forbidden response

func (*QueryFirewallPoliciesForbidden) Error

func (*QueryFirewallPoliciesForbidden) GetPayload

func (*QueryFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *QueryFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this query firewall policies forbidden response has a 4xx status code

func (*QueryFirewallPoliciesForbidden) IsCode added in v0.2.27

func (o *QueryFirewallPoliciesForbidden) IsCode(code int) bool

IsCode returns true when this query firewall policies forbidden response a status code equal to that given

func (*QueryFirewallPoliciesForbidden) IsRedirect added in v0.2.27

func (o *QueryFirewallPoliciesForbidden) IsRedirect() bool

IsRedirect returns true when this query firewall policies forbidden response has a 3xx status code

func (*QueryFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *QueryFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this query firewall policies forbidden response has a 5xx status code

func (*QueryFirewallPoliciesForbidden) IsSuccess added in v0.2.27

func (o *QueryFirewallPoliciesForbidden) IsSuccess() bool

IsSuccess returns true when this query firewall policies forbidden response has a 2xx status code

func (*QueryFirewallPoliciesForbidden) String added in v0.2.27

type QueryFirewallPoliciesInternalServerError

type QueryFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewQueryFirewallPoliciesInternalServerError

func NewQueryFirewallPoliciesInternalServerError() *QueryFirewallPoliciesInternalServerError

NewQueryFirewallPoliciesInternalServerError creates a QueryFirewallPoliciesInternalServerError with default headers values

func (*QueryFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the query firewall policies internal server error response

func (*QueryFirewallPoliciesInternalServerError) Error

func (*QueryFirewallPoliciesInternalServerError) GetPayload

func (*QueryFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this query firewall policies internal server error response has a 4xx status code

func (*QueryFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this query firewall policies internal server error response a status code equal to that given

func (*QueryFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this query firewall policies internal server error response has a 3xx status code

func (*QueryFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this query firewall policies internal server error response has a 5xx status code

func (*QueryFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policies internal server error response has a 2xx status code

func (*QueryFirewallPoliciesInternalServerError) String added in v0.2.27

type QueryFirewallPoliciesOK

type QueryFirewallPoliciesOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPoliciesOK describes a response with status code 200, with default header values.

OK

func NewQueryFirewallPoliciesOK

func NewQueryFirewallPoliciesOK() *QueryFirewallPoliciesOK

NewQueryFirewallPoliciesOK creates a QueryFirewallPoliciesOK with default headers values

func (*QueryFirewallPoliciesOK) Code added in v0.2.33

func (o *QueryFirewallPoliciesOK) Code() int

Code gets the status code for the query firewall policies o k response

func (*QueryFirewallPoliciesOK) Error

func (o *QueryFirewallPoliciesOK) Error() string

func (*QueryFirewallPoliciesOK) GetPayload

func (*QueryFirewallPoliciesOK) IsClientError added in v0.2.27

func (o *QueryFirewallPoliciesOK) IsClientError() bool

IsClientError returns true when this query firewall policies o k response has a 4xx status code

func (*QueryFirewallPoliciesOK) IsCode added in v0.2.27

func (o *QueryFirewallPoliciesOK) IsCode(code int) bool

IsCode returns true when this query firewall policies o k response a status code equal to that given

func (*QueryFirewallPoliciesOK) IsRedirect added in v0.2.27

func (o *QueryFirewallPoliciesOK) IsRedirect() bool

IsRedirect returns true when this query firewall policies o k response has a 3xx status code

func (*QueryFirewallPoliciesOK) IsServerError added in v0.2.27

func (o *QueryFirewallPoliciesOK) IsServerError() bool

IsServerError returns true when this query firewall policies o k response has a 5xx status code

func (*QueryFirewallPoliciesOK) IsSuccess added in v0.2.27

func (o *QueryFirewallPoliciesOK) IsSuccess() bool

IsSuccess returns true when this query firewall policies o k response has a 2xx status code

func (*QueryFirewallPoliciesOK) String added in v0.2.27

func (o *QueryFirewallPoliciesOK) String() string

type QueryFirewallPoliciesParams

type QueryFirewallPoliciesParams struct {

	/* Filter.

	   The filter expression that should be used to limit the results
	*/
	Filter *string

	/* Limit.

	   The maximum records to return. [1-5000]
	*/
	Limit *int64

	/* Offset.

	   The offset to start retrieving records from
	*/
	Offset *int64

	/* Sort.

	   The property to sort by
	*/
	Sort *string

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

QueryFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the query firewall policies operation.

Typically these are written to a http.Request.

func NewQueryFirewallPoliciesParams

func NewQueryFirewallPoliciesParams() *QueryFirewallPoliciesParams

NewQueryFirewallPoliciesParams creates a new QueryFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewQueryFirewallPoliciesParamsWithContext

func NewQueryFirewallPoliciesParamsWithContext(ctx context.Context) *QueryFirewallPoliciesParams

NewQueryFirewallPoliciesParamsWithContext creates a new QueryFirewallPoliciesParams object with the ability to set a context for a request.

func NewQueryFirewallPoliciesParamsWithHTTPClient

func NewQueryFirewallPoliciesParamsWithHTTPClient(client *http.Client) *QueryFirewallPoliciesParams

NewQueryFirewallPoliciesParamsWithHTTPClient creates a new QueryFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewQueryFirewallPoliciesParamsWithTimeout

func NewQueryFirewallPoliciesParamsWithTimeout(timeout time.Duration) *QueryFirewallPoliciesParams

NewQueryFirewallPoliciesParamsWithTimeout creates a new QueryFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*QueryFirewallPoliciesParams) SetContext

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

SetContext adds the context to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetDefaults

func (o *QueryFirewallPoliciesParams) SetDefaults()

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

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

func (*QueryFirewallPoliciesParams) SetFilter

func (o *QueryFirewallPoliciesParams) SetFilter(filter *string)

SetFilter adds the filter to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetLimit

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

SetLimit adds the limit to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetOffset

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

SetOffset adds the offset to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetSort

func (o *QueryFirewallPoliciesParams) SetSort(sort *string)

SetSort adds the sort to the query firewall policies params

func (*QueryFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithContext

WithContext adds the context to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithDefaults

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

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

func (*QueryFirewallPoliciesParams) WithFilter

WithFilter adds the filter to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithLimit

WithLimit adds the limit to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithOffset

WithOffset adds the offset to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithSort

WithSort adds the sort to the query firewall policies params

func (*QueryFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the query firewall policies params

func (*QueryFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryFirewallPoliciesReader

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

QueryFirewallPoliciesReader is a Reader for the QueryFirewallPolicies structure.

func (*QueryFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryFirewallPoliciesTooManyRequests

type QueryFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

QueryFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewQueryFirewallPoliciesTooManyRequests

func NewQueryFirewallPoliciesTooManyRequests() *QueryFirewallPoliciesTooManyRequests

NewQueryFirewallPoliciesTooManyRequests creates a QueryFirewallPoliciesTooManyRequests with default headers values

func (*QueryFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the query firewall policies too many requests response

func (*QueryFirewallPoliciesTooManyRequests) Error

func (*QueryFirewallPoliciesTooManyRequests) GetPayload

func (*QueryFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

func (o *QueryFirewallPoliciesTooManyRequests) IsClientError() bool

IsClientError returns true when this query firewall policies too many requests response has a 4xx status code

func (*QueryFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this query firewall policies too many requests response a status code equal to that given

func (*QueryFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this query firewall policies too many requests response has a 3xx status code

func (*QueryFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

func (o *QueryFirewallPoliciesTooManyRequests) IsServerError() bool

IsServerError returns true when this query firewall policies too many requests response has a 5xx status code

func (*QueryFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policies too many requests response has a 2xx status code

func (*QueryFirewallPoliciesTooManyRequests) String added in v0.2.27

type QueryFirewallPolicyMembersBadRequest

type QueryFirewallPolicyMembersBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPolicyMembersBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewQueryFirewallPolicyMembersBadRequest

func NewQueryFirewallPolicyMembersBadRequest() *QueryFirewallPolicyMembersBadRequest

NewQueryFirewallPolicyMembersBadRequest creates a QueryFirewallPolicyMembersBadRequest with default headers values

func (*QueryFirewallPolicyMembersBadRequest) Code added in v0.2.33

Code gets the status code for the query firewall policy members bad request response

func (*QueryFirewallPolicyMembersBadRequest) Error

func (*QueryFirewallPolicyMembersBadRequest) GetPayload

func (*QueryFirewallPolicyMembersBadRequest) IsClientError added in v0.2.27

func (o *QueryFirewallPolicyMembersBadRequest) IsClientError() bool

IsClientError returns true when this query firewall policy members bad request response has a 4xx status code

func (*QueryFirewallPolicyMembersBadRequest) IsCode added in v0.2.27

IsCode returns true when this query firewall policy members bad request response a status code equal to that given

func (*QueryFirewallPolicyMembersBadRequest) IsRedirect added in v0.2.27

IsRedirect returns true when this query firewall policy members bad request response has a 3xx status code

func (*QueryFirewallPolicyMembersBadRequest) IsServerError added in v0.2.27

func (o *QueryFirewallPolicyMembersBadRequest) IsServerError() bool

IsServerError returns true when this query firewall policy members bad request response has a 5xx status code

func (*QueryFirewallPolicyMembersBadRequest) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policy members bad request response has a 2xx status code

func (*QueryFirewallPolicyMembersBadRequest) String added in v0.2.27

type QueryFirewallPolicyMembersForbidden

type QueryFirewallPolicyMembersForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

QueryFirewallPolicyMembersForbidden describes a response with status code 403, with default header values.

Forbidden

func NewQueryFirewallPolicyMembersForbidden

func NewQueryFirewallPolicyMembersForbidden() *QueryFirewallPolicyMembersForbidden

NewQueryFirewallPolicyMembersForbidden creates a QueryFirewallPolicyMembersForbidden with default headers values

func (*QueryFirewallPolicyMembersForbidden) Code added in v0.2.33

Code gets the status code for the query firewall policy members forbidden response

func (*QueryFirewallPolicyMembersForbidden) Error

func (*QueryFirewallPolicyMembersForbidden) GetPayload

func (*QueryFirewallPolicyMembersForbidden) IsClientError added in v0.2.27

func (o *QueryFirewallPolicyMembersForbidden) IsClientError() bool

IsClientError returns true when this query firewall policy members forbidden response has a 4xx status code

func (*QueryFirewallPolicyMembersForbidden) IsCode added in v0.2.27

IsCode returns true when this query firewall policy members forbidden response a status code equal to that given

func (*QueryFirewallPolicyMembersForbidden) IsRedirect added in v0.2.27

func (o *QueryFirewallPolicyMembersForbidden) IsRedirect() bool

IsRedirect returns true when this query firewall policy members forbidden response has a 3xx status code

func (*QueryFirewallPolicyMembersForbidden) IsServerError added in v0.2.27

func (o *QueryFirewallPolicyMembersForbidden) IsServerError() bool

IsServerError returns true when this query firewall policy members forbidden response has a 5xx status code

func (*QueryFirewallPolicyMembersForbidden) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policy members forbidden response has a 2xx status code

func (*QueryFirewallPolicyMembersForbidden) String added in v0.2.27

type QueryFirewallPolicyMembersInternalServerError

type QueryFirewallPolicyMembersInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPolicyMembersInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewQueryFirewallPolicyMembersInternalServerError

func NewQueryFirewallPolicyMembersInternalServerError() *QueryFirewallPolicyMembersInternalServerError

NewQueryFirewallPolicyMembersInternalServerError creates a QueryFirewallPolicyMembersInternalServerError with default headers values

func (*QueryFirewallPolicyMembersInternalServerError) Code added in v0.2.33

Code gets the status code for the query firewall policy members internal server error response

func (*QueryFirewallPolicyMembersInternalServerError) Error

func (*QueryFirewallPolicyMembersInternalServerError) GetPayload

func (*QueryFirewallPolicyMembersInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this query firewall policy members internal server error response has a 4xx status code

func (*QueryFirewallPolicyMembersInternalServerError) IsCode added in v0.2.27

IsCode returns true when this query firewall policy members internal server error response a status code equal to that given

func (*QueryFirewallPolicyMembersInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this query firewall policy members internal server error response has a 3xx status code

func (*QueryFirewallPolicyMembersInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this query firewall policy members internal server error response has a 5xx status code

func (*QueryFirewallPolicyMembersInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policy members internal server error response has a 2xx status code

func (*QueryFirewallPolicyMembersInternalServerError) String added in v0.2.27

type QueryFirewallPolicyMembersNotFound

type QueryFirewallPolicyMembersNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPolicyMembersNotFound describes a response with status code 404, with default header values.

Not Found

func NewQueryFirewallPolicyMembersNotFound

func NewQueryFirewallPolicyMembersNotFound() *QueryFirewallPolicyMembersNotFound

NewQueryFirewallPolicyMembersNotFound creates a QueryFirewallPolicyMembersNotFound with default headers values

func (*QueryFirewallPolicyMembersNotFound) Code added in v0.2.33

Code gets the status code for the query firewall policy members not found response

func (*QueryFirewallPolicyMembersNotFound) Error

func (*QueryFirewallPolicyMembersNotFound) GetPayload

func (*QueryFirewallPolicyMembersNotFound) IsClientError added in v0.2.27

func (o *QueryFirewallPolicyMembersNotFound) IsClientError() bool

IsClientError returns true when this query firewall policy members not found response has a 4xx status code

func (*QueryFirewallPolicyMembersNotFound) IsCode added in v0.2.27

IsCode returns true when this query firewall policy members not found response a status code equal to that given

func (*QueryFirewallPolicyMembersNotFound) IsRedirect added in v0.2.27

func (o *QueryFirewallPolicyMembersNotFound) IsRedirect() bool

IsRedirect returns true when this query firewall policy members not found response has a 3xx status code

func (*QueryFirewallPolicyMembersNotFound) IsServerError added in v0.2.27

func (o *QueryFirewallPolicyMembersNotFound) IsServerError() bool

IsServerError returns true when this query firewall policy members not found response has a 5xx status code

func (*QueryFirewallPolicyMembersNotFound) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policy members not found response has a 2xx status code

func (*QueryFirewallPolicyMembersNotFound) String added in v0.2.27

type QueryFirewallPolicyMembersOK

type QueryFirewallPolicyMembersOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

QueryFirewallPolicyMembersOK describes a response with status code 200, with default header values.

OK

func NewQueryFirewallPolicyMembersOK

func NewQueryFirewallPolicyMembersOK() *QueryFirewallPolicyMembersOK

NewQueryFirewallPolicyMembersOK creates a QueryFirewallPolicyMembersOK with default headers values

func (*QueryFirewallPolicyMembersOK) Code added in v0.2.33

Code gets the status code for the query firewall policy members o k response

func (*QueryFirewallPolicyMembersOK) Error

func (*QueryFirewallPolicyMembersOK) GetPayload

func (*QueryFirewallPolicyMembersOK) IsClientError added in v0.2.27

func (o *QueryFirewallPolicyMembersOK) IsClientError() bool

IsClientError returns true when this query firewall policy members o k response has a 4xx status code

func (*QueryFirewallPolicyMembersOK) IsCode added in v0.2.27

func (o *QueryFirewallPolicyMembersOK) IsCode(code int) bool

IsCode returns true when this query firewall policy members o k response a status code equal to that given

func (*QueryFirewallPolicyMembersOK) IsRedirect added in v0.2.27

func (o *QueryFirewallPolicyMembersOK) IsRedirect() bool

IsRedirect returns true when this query firewall policy members o k response has a 3xx status code

func (*QueryFirewallPolicyMembersOK) IsServerError added in v0.2.27

func (o *QueryFirewallPolicyMembersOK) IsServerError() bool

IsServerError returns true when this query firewall policy members o k response has a 5xx status code

func (*QueryFirewallPolicyMembersOK) IsSuccess added in v0.2.27

func (o *QueryFirewallPolicyMembersOK) IsSuccess() bool

IsSuccess returns true when this query firewall policy members o k response has a 2xx status code

func (*QueryFirewallPolicyMembersOK) String added in v0.2.27

type QueryFirewallPolicyMembersParams

type QueryFirewallPolicyMembersParams struct {

	/* Filter.

	   The filter expression that should be used to limit the results
	*/
	Filter *string

	/* ID.

	   The ID of the Firewall Policy to search for members of
	*/
	ID *string

	/* Limit.

	   The maximum records to return. [1-5000]
	*/
	Limit *int64

	/* Offset.

	   The offset to start retrieving records from
	*/
	Offset *int64

	/* Sort.

	   The property to sort by
	*/
	Sort *string

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

QueryFirewallPolicyMembersParams contains all the parameters to send to the API endpoint

for the query firewall policy members operation.

Typically these are written to a http.Request.

func NewQueryFirewallPolicyMembersParams

func NewQueryFirewallPolicyMembersParams() *QueryFirewallPolicyMembersParams

NewQueryFirewallPolicyMembersParams creates a new QueryFirewallPolicyMembersParams object, with the default timeout for this client.

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

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

func NewQueryFirewallPolicyMembersParamsWithContext

func NewQueryFirewallPolicyMembersParamsWithContext(ctx context.Context) *QueryFirewallPolicyMembersParams

NewQueryFirewallPolicyMembersParamsWithContext creates a new QueryFirewallPolicyMembersParams object with the ability to set a context for a request.

func NewQueryFirewallPolicyMembersParamsWithHTTPClient

func NewQueryFirewallPolicyMembersParamsWithHTTPClient(client *http.Client) *QueryFirewallPolicyMembersParams

NewQueryFirewallPolicyMembersParamsWithHTTPClient creates a new QueryFirewallPolicyMembersParams object with the ability to set a custom HTTPClient for a request.

func NewQueryFirewallPolicyMembersParamsWithTimeout

func NewQueryFirewallPolicyMembersParamsWithTimeout(timeout time.Duration) *QueryFirewallPolicyMembersParams

NewQueryFirewallPolicyMembersParamsWithTimeout creates a new QueryFirewallPolicyMembersParams object with the ability to set a timeout on a request.

func (*QueryFirewallPolicyMembersParams) SetContext

SetContext adds the context to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetDefaults

func (o *QueryFirewallPolicyMembersParams) SetDefaults()

SetDefaults hydrates default values in the query firewall policy members params (not the query body).

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

func (*QueryFirewallPolicyMembersParams) SetFilter

func (o *QueryFirewallPolicyMembersParams) SetFilter(filter *string)

SetFilter adds the filter to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetID

SetID adds the id to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetLimit

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

SetLimit adds the limit to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetOffset

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

SetOffset adds the offset to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetSort

func (o *QueryFirewallPolicyMembersParams) SetSort(sort *string)

SetSort adds the sort to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) SetTimeout

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

SetTimeout adds the timeout to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithContext

WithContext adds the context to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithDefaults

WithDefaults hydrates default values in the query firewall policy members params (not the query body).

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

func (*QueryFirewallPolicyMembersParams) WithFilter

WithFilter adds the filter to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithID

WithID adds the id to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithLimit

WithLimit adds the limit to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithOffset

WithOffset adds the offset to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithSort

WithSort adds the sort to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WithTimeout

WithTimeout adds the timeout to the query firewall policy members params

func (*QueryFirewallPolicyMembersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryFirewallPolicyMembersReader

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

QueryFirewallPolicyMembersReader is a Reader for the QueryFirewallPolicyMembers structure.

func (*QueryFirewallPolicyMembersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryFirewallPolicyMembersTooManyRequests

type QueryFirewallPolicyMembersTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

QueryFirewallPolicyMembersTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewQueryFirewallPolicyMembersTooManyRequests

func NewQueryFirewallPolicyMembersTooManyRequests() *QueryFirewallPolicyMembersTooManyRequests

NewQueryFirewallPolicyMembersTooManyRequests creates a QueryFirewallPolicyMembersTooManyRequests with default headers values

func (*QueryFirewallPolicyMembersTooManyRequests) Code added in v0.2.33

Code gets the status code for the query firewall policy members too many requests response

func (*QueryFirewallPolicyMembersTooManyRequests) Error

func (*QueryFirewallPolicyMembersTooManyRequests) GetPayload

func (*QueryFirewallPolicyMembersTooManyRequests) IsClientError added in v0.2.27

IsClientError returns true when this query firewall policy members too many requests response has a 4xx status code

func (*QueryFirewallPolicyMembersTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this query firewall policy members too many requests response a status code equal to that given

func (*QueryFirewallPolicyMembersTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this query firewall policy members too many requests response has a 3xx status code

func (*QueryFirewallPolicyMembersTooManyRequests) IsServerError added in v0.2.27

IsServerError returns true when this query firewall policy members too many requests response has a 5xx status code

func (*QueryFirewallPolicyMembersTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this query firewall policy members too many requests response has a 2xx status code

func (*QueryFirewallPolicyMembersTooManyRequests) String added in v0.2.27

type SetFirewallPoliciesPrecedenceBadRequest

type SetFirewallPoliciesPrecedenceBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

SetFirewallPoliciesPrecedenceBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewSetFirewallPoliciesPrecedenceBadRequest

func NewSetFirewallPoliciesPrecedenceBadRequest() *SetFirewallPoliciesPrecedenceBadRequest

NewSetFirewallPoliciesPrecedenceBadRequest creates a SetFirewallPoliciesPrecedenceBadRequest with default headers values

func (*SetFirewallPoliciesPrecedenceBadRequest) Code added in v0.2.33

Code gets the status code for the set firewall policies precedence bad request response

func (*SetFirewallPoliciesPrecedenceBadRequest) Error

func (*SetFirewallPoliciesPrecedenceBadRequest) GetPayload

func (*SetFirewallPoliciesPrecedenceBadRequest) IsClientError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceBadRequest) IsClientError() bool

IsClientError returns true when this set firewall policies precedence bad request response has a 4xx status code

func (*SetFirewallPoliciesPrecedenceBadRequest) IsCode added in v0.2.27

IsCode returns true when this set firewall policies precedence bad request response a status code equal to that given

func (*SetFirewallPoliciesPrecedenceBadRequest) IsRedirect added in v0.2.27

IsRedirect returns true when this set firewall policies precedence bad request response has a 3xx status code

func (*SetFirewallPoliciesPrecedenceBadRequest) IsServerError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceBadRequest) IsServerError() bool

IsServerError returns true when this set firewall policies precedence bad request response has a 5xx status code

func (*SetFirewallPoliciesPrecedenceBadRequest) IsSuccess added in v0.2.27

IsSuccess returns true when this set firewall policies precedence bad request response has a 2xx status code

func (*SetFirewallPoliciesPrecedenceBadRequest) String added in v0.2.27

type SetFirewallPoliciesPrecedenceForbidden

type SetFirewallPoliciesPrecedenceForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

SetFirewallPoliciesPrecedenceForbidden describes a response with status code 403, with default header values.

Forbidden

func NewSetFirewallPoliciesPrecedenceForbidden

func NewSetFirewallPoliciesPrecedenceForbidden() *SetFirewallPoliciesPrecedenceForbidden

NewSetFirewallPoliciesPrecedenceForbidden creates a SetFirewallPoliciesPrecedenceForbidden with default headers values

func (*SetFirewallPoliciesPrecedenceForbidden) Code added in v0.2.33

Code gets the status code for the set firewall policies precedence forbidden response

func (*SetFirewallPoliciesPrecedenceForbidden) Error

func (*SetFirewallPoliciesPrecedenceForbidden) GetPayload

func (*SetFirewallPoliciesPrecedenceForbidden) IsClientError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceForbidden) IsClientError() bool

IsClientError returns true when this set firewall policies precedence forbidden response has a 4xx status code

func (*SetFirewallPoliciesPrecedenceForbidden) IsCode added in v0.2.27

IsCode returns true when this set firewall policies precedence forbidden response a status code equal to that given

func (*SetFirewallPoliciesPrecedenceForbidden) IsRedirect added in v0.2.27

IsRedirect returns true when this set firewall policies precedence forbidden response has a 3xx status code

func (*SetFirewallPoliciesPrecedenceForbidden) IsServerError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceForbidden) IsServerError() bool

IsServerError returns true when this set firewall policies precedence forbidden response has a 5xx status code

func (*SetFirewallPoliciesPrecedenceForbidden) IsSuccess added in v0.2.27

IsSuccess returns true when this set firewall policies precedence forbidden response has a 2xx status code

func (*SetFirewallPoliciesPrecedenceForbidden) String added in v0.2.27

type SetFirewallPoliciesPrecedenceInternalServerError

type SetFirewallPoliciesPrecedenceInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

SetFirewallPoliciesPrecedenceInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewSetFirewallPoliciesPrecedenceInternalServerError

func NewSetFirewallPoliciesPrecedenceInternalServerError() *SetFirewallPoliciesPrecedenceInternalServerError

NewSetFirewallPoliciesPrecedenceInternalServerError creates a SetFirewallPoliciesPrecedenceInternalServerError with default headers values

func (*SetFirewallPoliciesPrecedenceInternalServerError) Code added in v0.2.33

Code gets the status code for the set firewall policies precedence internal server error response

func (*SetFirewallPoliciesPrecedenceInternalServerError) Error

func (*SetFirewallPoliciesPrecedenceInternalServerError) GetPayload

func (*SetFirewallPoliciesPrecedenceInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this set firewall policies precedence internal server error response has a 4xx status code

func (*SetFirewallPoliciesPrecedenceInternalServerError) IsCode added in v0.2.27

IsCode returns true when this set firewall policies precedence internal server error response a status code equal to that given

func (*SetFirewallPoliciesPrecedenceInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this set firewall policies precedence internal server error response has a 3xx status code

func (*SetFirewallPoliciesPrecedenceInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this set firewall policies precedence internal server error response has a 5xx status code

func (*SetFirewallPoliciesPrecedenceInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this set firewall policies precedence internal server error response has a 2xx status code

func (*SetFirewallPoliciesPrecedenceInternalServerError) String added in v0.2.27

type SetFirewallPoliciesPrecedenceOK

type SetFirewallPoliciesPrecedenceOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaQueryResponse
}

SetFirewallPoliciesPrecedenceOK describes a response with status code 200, with default header values.

OK

func NewSetFirewallPoliciesPrecedenceOK

func NewSetFirewallPoliciesPrecedenceOK() *SetFirewallPoliciesPrecedenceOK

NewSetFirewallPoliciesPrecedenceOK creates a SetFirewallPoliciesPrecedenceOK with default headers values

func (*SetFirewallPoliciesPrecedenceOK) Code added in v0.2.33

Code gets the status code for the set firewall policies precedence o k response

func (*SetFirewallPoliciesPrecedenceOK) Error

func (*SetFirewallPoliciesPrecedenceOK) GetPayload

func (*SetFirewallPoliciesPrecedenceOK) IsClientError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceOK) IsClientError() bool

IsClientError returns true when this set firewall policies precedence o k response has a 4xx status code

func (*SetFirewallPoliciesPrecedenceOK) IsCode added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceOK) IsCode(code int) bool

IsCode returns true when this set firewall policies precedence o k response a status code equal to that given

func (*SetFirewallPoliciesPrecedenceOK) IsRedirect added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceOK) IsRedirect() bool

IsRedirect returns true when this set firewall policies precedence o k response has a 3xx status code

func (*SetFirewallPoliciesPrecedenceOK) IsServerError added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceOK) IsServerError() bool

IsServerError returns true when this set firewall policies precedence o k response has a 5xx status code

func (*SetFirewallPoliciesPrecedenceOK) IsSuccess added in v0.2.27

func (o *SetFirewallPoliciesPrecedenceOK) IsSuccess() bool

IsSuccess returns true when this set firewall policies precedence o k response has a 2xx status code

func (*SetFirewallPoliciesPrecedenceOK) String added in v0.2.27

type SetFirewallPoliciesPrecedenceParams

type SetFirewallPoliciesPrecedenceParams struct {

	// Body.
	Body *models.BaseSetPolicyPrecedenceReqV1

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

SetFirewallPoliciesPrecedenceParams contains all the parameters to send to the API endpoint

for the set firewall policies precedence operation.

Typically these are written to a http.Request.

func NewSetFirewallPoliciesPrecedenceParams

func NewSetFirewallPoliciesPrecedenceParams() *SetFirewallPoliciesPrecedenceParams

NewSetFirewallPoliciesPrecedenceParams creates a new SetFirewallPoliciesPrecedenceParams object, with the default timeout for this client.

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

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

func NewSetFirewallPoliciesPrecedenceParamsWithContext

func NewSetFirewallPoliciesPrecedenceParamsWithContext(ctx context.Context) *SetFirewallPoliciesPrecedenceParams

NewSetFirewallPoliciesPrecedenceParamsWithContext creates a new SetFirewallPoliciesPrecedenceParams object with the ability to set a context for a request.

func NewSetFirewallPoliciesPrecedenceParamsWithHTTPClient

func NewSetFirewallPoliciesPrecedenceParamsWithHTTPClient(client *http.Client) *SetFirewallPoliciesPrecedenceParams

NewSetFirewallPoliciesPrecedenceParamsWithHTTPClient creates a new SetFirewallPoliciesPrecedenceParams object with the ability to set a custom HTTPClient for a request.

func NewSetFirewallPoliciesPrecedenceParamsWithTimeout

func NewSetFirewallPoliciesPrecedenceParamsWithTimeout(timeout time.Duration) *SetFirewallPoliciesPrecedenceParams

NewSetFirewallPoliciesPrecedenceParamsWithTimeout creates a new SetFirewallPoliciesPrecedenceParams object with the ability to set a timeout on a request.

func (*SetFirewallPoliciesPrecedenceParams) SetBody

SetBody adds the body to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) SetContext

SetContext adds the context to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) SetDefaults

func (o *SetFirewallPoliciesPrecedenceParams) SetDefaults()

SetDefaults hydrates default values in the set firewall policies precedence params (not the query body).

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

func (*SetFirewallPoliciesPrecedenceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) SetTimeout

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

SetTimeout adds the timeout to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) WithBody

WithBody adds the body to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) WithContext

WithContext adds the context to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) WithDefaults

WithDefaults hydrates default values in the set firewall policies precedence params (not the query body).

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

func (*SetFirewallPoliciesPrecedenceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) WithTimeout

WithTimeout adds the timeout to the set firewall policies precedence params

func (*SetFirewallPoliciesPrecedenceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetFirewallPoliciesPrecedenceReader

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

SetFirewallPoliciesPrecedenceReader is a Reader for the SetFirewallPoliciesPrecedence structure.

func (*SetFirewallPoliciesPrecedenceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetFirewallPoliciesPrecedenceTooManyRequests

type SetFirewallPoliciesPrecedenceTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

SetFirewallPoliciesPrecedenceTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewSetFirewallPoliciesPrecedenceTooManyRequests

func NewSetFirewallPoliciesPrecedenceTooManyRequests() *SetFirewallPoliciesPrecedenceTooManyRequests

NewSetFirewallPoliciesPrecedenceTooManyRequests creates a SetFirewallPoliciesPrecedenceTooManyRequests with default headers values

func (*SetFirewallPoliciesPrecedenceTooManyRequests) Code added in v0.2.33

Code gets the status code for the set firewall policies precedence too many requests response

func (*SetFirewallPoliciesPrecedenceTooManyRequests) Error

func (*SetFirewallPoliciesPrecedenceTooManyRequests) GetPayload

func (*SetFirewallPoliciesPrecedenceTooManyRequests) IsClientError added in v0.2.27

IsClientError returns true when this set firewall policies precedence too many requests response has a 4xx status code

func (*SetFirewallPoliciesPrecedenceTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this set firewall policies precedence too many requests response a status code equal to that given

func (*SetFirewallPoliciesPrecedenceTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this set firewall policies precedence too many requests response has a 3xx status code

func (*SetFirewallPoliciesPrecedenceTooManyRequests) IsServerError added in v0.2.27

IsServerError returns true when this set firewall policies precedence too many requests response has a 5xx status code

func (*SetFirewallPoliciesPrecedenceTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this set firewall policies precedence too many requests response has a 2xx status code

func (*SetFirewallPoliciesPrecedenceTooManyRequests) String added in v0.2.27

type UpdateFirewallPoliciesBadRequest

type UpdateFirewallPoliciesBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

UpdateFirewallPoliciesBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewUpdateFirewallPoliciesBadRequest

func NewUpdateFirewallPoliciesBadRequest() *UpdateFirewallPoliciesBadRequest

NewUpdateFirewallPoliciesBadRequest creates a UpdateFirewallPoliciesBadRequest with default headers values

func (*UpdateFirewallPoliciesBadRequest) Code added in v0.2.33

Code gets the status code for the update firewall policies bad request response

func (*UpdateFirewallPoliciesBadRequest) Error

func (*UpdateFirewallPoliciesBadRequest) GetPayload

func (*UpdateFirewallPoliciesBadRequest) IsClientError added in v0.2.27

func (o *UpdateFirewallPoliciesBadRequest) IsClientError() bool

IsClientError returns true when this update firewall policies bad request response has a 4xx status code

func (*UpdateFirewallPoliciesBadRequest) IsCode added in v0.2.27

func (o *UpdateFirewallPoliciesBadRequest) IsCode(code int) bool

IsCode returns true when this update firewall policies bad request response a status code equal to that given

func (*UpdateFirewallPoliciesBadRequest) IsRedirect added in v0.2.27

func (o *UpdateFirewallPoliciesBadRequest) IsRedirect() bool

IsRedirect returns true when this update firewall policies bad request response has a 3xx status code

func (*UpdateFirewallPoliciesBadRequest) IsServerError added in v0.2.27

func (o *UpdateFirewallPoliciesBadRequest) IsServerError() bool

IsServerError returns true when this update firewall policies bad request response has a 5xx status code

func (*UpdateFirewallPoliciesBadRequest) IsSuccess added in v0.2.27

func (o *UpdateFirewallPoliciesBadRequest) IsSuccess() bool

IsSuccess returns true when this update firewall policies bad request response has a 2xx status code

func (*UpdateFirewallPoliciesBadRequest) String added in v0.2.27

type UpdateFirewallPoliciesForbidden

type UpdateFirewallPoliciesForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaErrorsOnly
}

UpdateFirewallPoliciesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUpdateFirewallPoliciesForbidden

func NewUpdateFirewallPoliciesForbidden() *UpdateFirewallPoliciesForbidden

NewUpdateFirewallPoliciesForbidden creates a UpdateFirewallPoliciesForbidden with default headers values

func (*UpdateFirewallPoliciesForbidden) Code added in v0.2.33

Code gets the status code for the update firewall policies forbidden response

func (*UpdateFirewallPoliciesForbidden) Error

func (*UpdateFirewallPoliciesForbidden) GetPayload

func (*UpdateFirewallPoliciesForbidden) IsClientError added in v0.2.27

func (o *UpdateFirewallPoliciesForbidden) IsClientError() bool

IsClientError returns true when this update firewall policies forbidden response has a 4xx status code

func (*UpdateFirewallPoliciesForbidden) IsCode added in v0.2.27

func (o *UpdateFirewallPoliciesForbidden) IsCode(code int) bool

IsCode returns true when this update firewall policies forbidden response a status code equal to that given

func (*UpdateFirewallPoliciesForbidden) IsRedirect added in v0.2.27

func (o *UpdateFirewallPoliciesForbidden) IsRedirect() bool

IsRedirect returns true when this update firewall policies forbidden response has a 3xx status code

func (*UpdateFirewallPoliciesForbidden) IsServerError added in v0.2.27

func (o *UpdateFirewallPoliciesForbidden) IsServerError() bool

IsServerError returns true when this update firewall policies forbidden response has a 5xx status code

func (*UpdateFirewallPoliciesForbidden) IsSuccess added in v0.2.27

func (o *UpdateFirewallPoliciesForbidden) IsSuccess() bool

IsSuccess returns true when this update firewall policies forbidden response has a 2xx status code

func (*UpdateFirewallPoliciesForbidden) String added in v0.2.27

type UpdateFirewallPoliciesInternalServerError

type UpdateFirewallPoliciesInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

UpdateFirewallPoliciesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewUpdateFirewallPoliciesInternalServerError

func NewUpdateFirewallPoliciesInternalServerError() *UpdateFirewallPoliciesInternalServerError

NewUpdateFirewallPoliciesInternalServerError creates a UpdateFirewallPoliciesInternalServerError with default headers values

func (*UpdateFirewallPoliciesInternalServerError) Code added in v0.2.33

Code gets the status code for the update firewall policies internal server error response

func (*UpdateFirewallPoliciesInternalServerError) Error

func (*UpdateFirewallPoliciesInternalServerError) GetPayload

func (*UpdateFirewallPoliciesInternalServerError) IsClientError added in v0.2.27

IsClientError returns true when this update firewall policies internal server error response has a 4xx status code

func (*UpdateFirewallPoliciesInternalServerError) IsCode added in v0.2.27

IsCode returns true when this update firewall policies internal server error response a status code equal to that given

func (*UpdateFirewallPoliciesInternalServerError) IsRedirect added in v0.2.27

IsRedirect returns true when this update firewall policies internal server error response has a 3xx status code

func (*UpdateFirewallPoliciesInternalServerError) IsServerError added in v0.2.27

IsServerError returns true when this update firewall policies internal server error response has a 5xx status code

func (*UpdateFirewallPoliciesInternalServerError) IsSuccess added in v0.2.27

IsSuccess returns true when this update firewall policies internal server error response has a 2xx status code

func (*UpdateFirewallPoliciesInternalServerError) String added in v0.2.27

type UpdateFirewallPoliciesNotFound

type UpdateFirewallPoliciesNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

UpdateFirewallPoliciesNotFound describes a response with status code 404, with default header values.

Not Found

func NewUpdateFirewallPoliciesNotFound

func NewUpdateFirewallPoliciesNotFound() *UpdateFirewallPoliciesNotFound

NewUpdateFirewallPoliciesNotFound creates a UpdateFirewallPoliciesNotFound with default headers values

func (*UpdateFirewallPoliciesNotFound) Code added in v0.2.33

Code gets the status code for the update firewall policies not found response

func (*UpdateFirewallPoliciesNotFound) Error

func (*UpdateFirewallPoliciesNotFound) GetPayload

func (*UpdateFirewallPoliciesNotFound) IsClientError added in v0.2.27

func (o *UpdateFirewallPoliciesNotFound) IsClientError() bool

IsClientError returns true when this update firewall policies not found response has a 4xx status code

func (*UpdateFirewallPoliciesNotFound) IsCode added in v0.2.27

func (o *UpdateFirewallPoliciesNotFound) IsCode(code int) bool

IsCode returns true when this update firewall policies not found response a status code equal to that given

func (*UpdateFirewallPoliciesNotFound) IsRedirect added in v0.2.27

func (o *UpdateFirewallPoliciesNotFound) IsRedirect() bool

IsRedirect returns true when this update firewall policies not found response has a 3xx status code

func (*UpdateFirewallPoliciesNotFound) IsServerError added in v0.2.27

func (o *UpdateFirewallPoliciesNotFound) IsServerError() bool

IsServerError returns true when this update firewall policies not found response has a 5xx status code

func (*UpdateFirewallPoliciesNotFound) IsSuccess added in v0.2.27

func (o *UpdateFirewallPoliciesNotFound) IsSuccess() bool

IsSuccess returns true when this update firewall policies not found response has a 2xx status code

func (*UpdateFirewallPoliciesNotFound) String added in v0.2.27

type UpdateFirewallPoliciesOK

type UpdateFirewallPoliciesOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.FirewallRespV1
}

UpdateFirewallPoliciesOK describes a response with status code 200, with default header values.

OK

func NewUpdateFirewallPoliciesOK

func NewUpdateFirewallPoliciesOK() *UpdateFirewallPoliciesOK

NewUpdateFirewallPoliciesOK creates a UpdateFirewallPoliciesOK with default headers values

func (*UpdateFirewallPoliciesOK) Code added in v0.2.33

func (o *UpdateFirewallPoliciesOK) Code() int

Code gets the status code for the update firewall policies o k response

func (*UpdateFirewallPoliciesOK) Error

func (o *UpdateFirewallPoliciesOK) Error() string

func (*UpdateFirewallPoliciesOK) GetPayload

func (*UpdateFirewallPoliciesOK) IsClientError added in v0.2.27

func (o *UpdateFirewallPoliciesOK) IsClientError() bool

IsClientError returns true when this update firewall policies o k response has a 4xx status code

func (*UpdateFirewallPoliciesOK) IsCode added in v0.2.27

func (o *UpdateFirewallPoliciesOK) IsCode(code int) bool

IsCode returns true when this update firewall policies o k response a status code equal to that given

func (*UpdateFirewallPoliciesOK) IsRedirect added in v0.2.27

func (o *UpdateFirewallPoliciesOK) IsRedirect() bool

IsRedirect returns true when this update firewall policies o k response has a 3xx status code

func (*UpdateFirewallPoliciesOK) IsServerError added in v0.2.27

func (o *UpdateFirewallPoliciesOK) IsServerError() bool

IsServerError returns true when this update firewall policies o k response has a 5xx status code

func (*UpdateFirewallPoliciesOK) IsSuccess added in v0.2.27

func (o *UpdateFirewallPoliciesOK) IsSuccess() bool

IsSuccess returns true when this update firewall policies o k response has a 2xx status code

func (*UpdateFirewallPoliciesOK) String added in v0.2.27

func (o *UpdateFirewallPoliciesOK) String() string

type UpdateFirewallPoliciesParams

type UpdateFirewallPoliciesParams struct {

	// Body.
	Body *models.FirewallUpdateFirewallPoliciesReqV1

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

UpdateFirewallPoliciesParams contains all the parameters to send to the API endpoint

for the update firewall policies operation.

Typically these are written to a http.Request.

func NewUpdateFirewallPoliciesParams

func NewUpdateFirewallPoliciesParams() *UpdateFirewallPoliciesParams

NewUpdateFirewallPoliciesParams creates a new UpdateFirewallPoliciesParams object, with the default timeout for this client.

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

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

func NewUpdateFirewallPoliciesParamsWithContext

func NewUpdateFirewallPoliciesParamsWithContext(ctx context.Context) *UpdateFirewallPoliciesParams

NewUpdateFirewallPoliciesParamsWithContext creates a new UpdateFirewallPoliciesParams object with the ability to set a context for a request.

func NewUpdateFirewallPoliciesParamsWithHTTPClient

func NewUpdateFirewallPoliciesParamsWithHTTPClient(client *http.Client) *UpdateFirewallPoliciesParams

NewUpdateFirewallPoliciesParamsWithHTTPClient creates a new UpdateFirewallPoliciesParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateFirewallPoliciesParamsWithTimeout

func NewUpdateFirewallPoliciesParamsWithTimeout(timeout time.Duration) *UpdateFirewallPoliciesParams

NewUpdateFirewallPoliciesParamsWithTimeout creates a new UpdateFirewallPoliciesParams object with the ability to set a timeout on a request.

func (*UpdateFirewallPoliciesParams) SetBody

SetBody adds the body to the update firewall policies params

func (*UpdateFirewallPoliciesParams) SetContext

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

SetContext adds the context to the update firewall policies params

func (*UpdateFirewallPoliciesParams) SetDefaults

func (o *UpdateFirewallPoliciesParams) SetDefaults()

SetDefaults hydrates default values in the update firewall policies params (not the query body).

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

func (*UpdateFirewallPoliciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update firewall policies params

func (*UpdateFirewallPoliciesParams) SetTimeout

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

SetTimeout adds the timeout to the update firewall policies params

func (*UpdateFirewallPoliciesParams) WithBody

WithBody adds the body to the update firewall policies params

func (*UpdateFirewallPoliciesParams) WithContext

WithContext adds the context to the update firewall policies params

func (*UpdateFirewallPoliciesParams) WithDefaults

WithDefaults hydrates default values in the update firewall policies params (not the query body).

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

func (*UpdateFirewallPoliciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update firewall policies params

func (*UpdateFirewallPoliciesParams) WithTimeout

WithTimeout adds the timeout to the update firewall policies params

func (*UpdateFirewallPoliciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateFirewallPoliciesReader

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

UpdateFirewallPoliciesReader is a Reader for the UpdateFirewallPolicies structure.

func (*UpdateFirewallPoliciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateFirewallPoliciesTooManyRequests

type UpdateFirewallPoliciesTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

UpdateFirewallPoliciesTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewUpdateFirewallPoliciesTooManyRequests

func NewUpdateFirewallPoliciesTooManyRequests() *UpdateFirewallPoliciesTooManyRequests

NewUpdateFirewallPoliciesTooManyRequests creates a UpdateFirewallPoliciesTooManyRequests with default headers values

func (*UpdateFirewallPoliciesTooManyRequests) Code added in v0.2.33

Code gets the status code for the update firewall policies too many requests response

func (*UpdateFirewallPoliciesTooManyRequests) Error

func (*UpdateFirewallPoliciesTooManyRequests) GetPayload

func (*UpdateFirewallPoliciesTooManyRequests) IsClientError added in v0.2.27

func (o *UpdateFirewallPoliciesTooManyRequests) IsClientError() bool

IsClientError returns true when this update firewall policies too many requests response has a 4xx status code

func (*UpdateFirewallPoliciesTooManyRequests) IsCode added in v0.2.27

IsCode returns true when this update firewall policies too many requests response a status code equal to that given

func (*UpdateFirewallPoliciesTooManyRequests) IsRedirect added in v0.2.27

IsRedirect returns true when this update firewall policies too many requests response has a 3xx status code

func (*UpdateFirewallPoliciesTooManyRequests) IsServerError added in v0.2.27

func (o *UpdateFirewallPoliciesTooManyRequests) IsServerError() bool

IsServerError returns true when this update firewall policies too many requests response has a 5xx status code

func (*UpdateFirewallPoliciesTooManyRequests) IsSuccess added in v0.2.27

IsSuccess returns true when this update firewall policies too many requests response has a 2xx status code

func (*UpdateFirewallPoliciesTooManyRequests) String added in v0.2.27

Jump to

Keyboard shortcuts

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