identity_access_management

package
v0.0.1-alpha Latest Latest
Warning

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

Go to latest
Published: Sep 24, 2021 License: Apache-2.0 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 identity access management API

func (*Client) CreateAuthProfile

func (a *Client) CreateAuthProfile(params *CreateAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthProfileOK, error)

CreateAuthProfile creates a a a profile

Create an AAA profile record.

func (*Client) CreateCredential

func (a *Client) CreateCredential(params *CreateCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateCredentialOK, error)

CreateCredential creates i a m credential

Create an IAM credential record.

func (*Client) CreateEnterprise

func (a *Client) CreateEnterprise(params *CreateEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateEnterpriseOK, error)

CreateEnterprise creates i a m enterprise

Create an IAM enterprise record.

func (*Client) CreateRealm

func (a *Client) CreateRealm(params *CreateRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateRealmOK, error)

CreateRealm creates a realm for an enterprise

Create a realm. For example, zededa.com can be registered as a realm for an enterprise. Only those Oauth users who belong to this domain will be allowed to login to the enterprise.

func (*Client) CreateRole

func (a *Client) CreateRole(params *CreateRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateRoleOK, error)

CreateRole creates i a m role

Create an IAM role record.

func (*Client) CreateUser

func (a *Client) CreateUser(params *CreateUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateUserOK, error)

CreateUser creates i a m user

Create an IAM user record.

func (*Client) CreateUserSessionSelf

func (a *Client) CreateUserSessionSelf(params *CreateUserSessionSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateUserSessionSelfOK, error)

CreateUserSessionSelf generates a new session token

Generate a new token with an extended expiry time. The desired expiry time should be passed as number of seconds.

func (*Client) DeleteAuthProfile

func (a *Client) DeleteAuthProfile(params *DeleteAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthProfileOK, error)

DeleteAuthProfile deletes a a a profile

Delete an AAA profile record.

func (*Client) DeleteCredential

func (a *Client) DeleteCredential(params *DeleteCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCredentialOK, error)

DeleteCredential deletes i a m credential

Delete an IAM credential record.

func (*Client) DeleteEnterprise

func (a *Client) DeleteEnterprise(params *DeleteEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteEnterpriseOK, error)

DeleteEnterprise deletes i a m role

Delete an IAM enterprise record.

func (*Client) DeleteRealm

func (a *Client) DeleteRealm(params *DeleteRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRealmOK, error)

DeleteRealm deletes a realm

Delete a realm.

func (*Client) DeleteRole

func (a *Client) DeleteRole(params *DeleteRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRoleOK, error)

DeleteRole deletes i a m role

Delete an IAM role record.

func (*Client) DeleteUser

func (a *Client) DeleteUser(params *DeleteUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteUserOK, error)

DeleteUser deletes i a m user

Delete an IAM user record.

func (*Client) GetAuthProfile

func (a *Client) GetAuthProfile(params *GetAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthProfileOK, error)

GetAuthProfile gets a a a profile

Get the configuration (without security details) of an AAA profile record.

func (*Client) GetAuthProfileByName

func (a *Client) GetAuthProfileByName(params *GetAuthProfileByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthProfileByNameOK, error)

GetAuthProfileByName gets a a a profile

Get the configuration (without security details) of an AAA profile record.

func (*Client) GetEnterprise

func (a *Client) GetEnterprise(params *GetEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseOK, error)

GetEnterprise gets enterprise

Get the configuration (without security details) and status of an enterprise record.

func (*Client) GetEnterpriseByName

func (a *Client) GetEnterpriseByName(params *GetEnterpriseByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseByNameOK, error)

GetEnterpriseByName gets enterprise

Get the configuration (without security details) and status of an enterprise record.

func (*Client) GetEnterpriseSelf

func (a *Client) GetEnterpriseSelf(params *GetEnterpriseSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseSelfOK, error)

GetEnterpriseSelf gets own enterprise

Get the configuration (without security details) and status of user's own enterprise record.

func (*Client) GetRealm

func (a *Client) GetRealm(params *GetRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRealmOK, error)

GetRealm gets a realm

Get the details of a realm

func (*Client) GetRealmByName

func (a *Client) GetRealmByName(params *GetRealmByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRealmByNameOK, error)

GetRealmByName gets i a m realm

Get a realm by name.

func (*Client) GetRole

func (a *Client) GetRole(params *GetRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleOK, error)

GetRole gets i a m role

Get the configuration (without security details) of an IAM role record.

func (*Client) GetRoleByName

func (a *Client) GetRoleByName(params *GetRoleByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleByNameOK, error)

GetRoleByName gets i a m role

Get the configuration (without security details) of an IAM role record.

func (*Client) GetRoleSelf

func (a *Client) GetRoleSelf(params *GetRoleSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleSelfOK, error)

GetRoleSelf gets own i a m role

Get the configuration (without security details) of user's own IAM role record.

func (*Client) GetUser

func (a *Client) GetUser(params *GetUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserOK, error)

GetUser gets i a m user

Get the configuration (without security details) of an IAM user record.

func (*Client) GetUserByName

func (a *Client) GetUserByName(params *GetUserByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserByNameOK, error)

GetUserByName gets i a m user

Get the configuration (without security details) of an IAM user record.

func (*Client) GetUserSelf

func (a *Client) GetUserSelf(params *GetUserSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSelfOK, error)

GetUserSelf gets own i a m user

Get the configuration (without security details) of user's own IAM user record.

func (*Client) GetUserSession

func (a *Client) GetUserSession(params *GetUserSessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSessionOK, error)

GetUserSession gets user session

Get the details of a user session with given session token.

func (*Client) GetUserSessionSelf

func (a *Client) GetUserSessionSelf(params *GetUserSessionSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSessionSelfOK, error)

GetUserSessionSelf gets current user session

Get the details of the current user session.

func (*Client) Login

func (a *Client) Login(params *LoginParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginOK, error)

Login logins locally

Login with zedcontrol as identity provider.

func (*Client) LoginExternal

func (a *Client) LoginExternal(params *LoginExternalParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginExternalOK, error)

LoginExternal logins externally

Login with external identity provider (e.g. Okta, gmail, Azure AD etc.). If the enterprise has an AAA Profile configured, zedcontrol will redirect the user to the login page of the external identity provider.

func (*Client) LoginExternalOAuth2Callback

func (a *Client) LoginExternalOAuth2Callback(params *LoginExternalOAuth2CallbackParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginExternalOAuth2CallbackOK, error)

LoginExternalOAuth2Callback logins callback

Login callback for external OAauth2 identity provider

func (*Client) LoginForgotPassword

func (a *Client) LoginForgotPassword(params *LoginForgotPasswordParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginForgotPasswordOK, error)

LoginForgotPassword resets forgotten password

Reset password in case it is forgotten

func (*Client) LoginMode

func (a *Client) LoginMode(params *LoginModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginModeOK, error)

LoginMode gets a a a mode of the user

Get the AAA mode of the user. AAA mode can be authentication and authorization with zedcontrol as identity provider or authentication (and optionally authorization) with external identity provider. Oauth2 is supported for external authentication protocols.

func (*Client) Logout

func (a *Client) Logout(params *LogoutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LogoutOK, error)

Logout logouts

Logout from zedcontrol. Current user session will be terminated. In case of login with external identity provider, user session in the identity provider will not be impacted.

func (*Client) QueryAuthProfiles

func (a *Client) QueryAuthProfiles(params *QueryAuthProfilesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryAuthProfilesOK, error)

QueryAuthProfiles queries a a a profiles

Query the AAA profile records.

func (*Client) QueryEnterprises

func (a *Client) QueryEnterprises(params *QueryEnterprisesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryEnterprisesOK, error)

QueryEnterprises queries i a m enterprises

Query the IAM Enterprises records.

func (*Client) QueryRealms

func (a *Client) QueryRealms(params *QueryRealmsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryRealmsOK, error)

QueryRealms queries all realms

Query all realms.

func (*Client) QueryRoles

func (a *Client) QueryRoles(params *QueryRolesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryRolesOK, error)

QueryRoles queries i a m roles

Query the IAM Role records.

func (*Client) QueryUserSessions

func (a *Client) QueryUserSessions(params *QueryUserSessionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryUserSessionsOK, error)

QueryUserSessions queries user sessions

Query all the active user sessions for all users.

func (*Client) QueryUsers

func (a *Client) QueryUsers(params *QueryUsersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryUsersOK, error)

QueryUsers queries i a m users

Query the IAM user records.

func (*Client) RefreshUserSession

func (a *Client) RefreshUserSession(params *RefreshUserSessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RefreshUserSessionOK, error)

RefreshUserSession refreshes current user session

Refresh the current user session. The current session will be extended for another 4 hours.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) SignupEnterprise

func (a *Client) SignupEnterprise(params *SignupEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SignupEnterpriseOK, error)

SignupEnterprise signs up for a new enterprise account

Sign up for a new enterprise account in zedcontrol. Enterprise will not be active unless admin user is validated with email.

func (*Client) SignupUser

func (a *Client) SignupUser(params *SignupUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SignupUserOK, error)

SignupUser gets enterprise

Get the configuration (without security details) and status of an enterprise record.

func (*Client) UpdateAuthProfile

func (a *Client) UpdateAuthProfile(params *UpdateAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthProfileOK, error)

UpdateAuthProfile updates a a a profile

Update an AAA profile record. The usual pattern to update an AAA profile record is to retrieve the record and update with the modified values in a new body to update the AAA profile record.

func (*Client) UpdateCredential

func (a *Client) UpdateCredential(params *UpdateCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCredentialOK, error)

UpdateCredential updates i a m credential

Update an IAM credential record.

func (*Client) UpdateCredentialSelf

func (a *Client) UpdateCredentialSelf(params *UpdateCredentialSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCredentialSelfOK, error)

UpdateCredentialSelf updates i a m credential

Update user's own IAM credential record.

func (*Client) UpdateEnterprise

func (a *Client) UpdateEnterprise(params *UpdateEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateEnterpriseOK, error)

UpdateEnterprise updates enterprise

Update an enterprise record. The usual pattern to update an enterprise record is to retrieve the record and update with the modified values in a new body to update the enterprise record.

func (*Client) UpdateEnterprise2

func (a *Client) UpdateEnterprise2(params *UpdateEnterprise2Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateEnterprise2OK, error)

UpdateEnterprise2 updates enterprise

Update an enterprise record. The usual pattern to update an enterprise record is to retrieve the record and update with the modified values in a new body to update the enterprise record.

func (*Client) UpdateRealm

func (a *Client) UpdateRealm(params *UpdateRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRealmOK, error)

UpdateRealm updates a realm

Update a realm. The usual pattern to update a realm is to retrieve the record and update with the modified values in a new body to update the realm.

func (*Client) UpdateRole

func (a *Client) UpdateRole(params *UpdateRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRoleOK, error)

UpdateRole updates i a m role

Update an IAM role record. The usual pattern to update an IAM role record is to retrieve the record and update with the modified values in a new body to update the IAM role record.

func (*Client) UpdateUser

func (a *Client) UpdateUser(params *UpdateUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateUserOK, error)

UpdateUser updates i a m user

Update an IAM user record. The usual pattern to update an IAM user record is to retrieve the record and update with the modified values in a new body to update the IAM user record.

func (*Client) UpdateUser2

func (a *Client) UpdateUser2(params *UpdateUser2Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateUser2OK, error)

UpdateUser2 updates i a m user

Update an IAM user record. The usual pattern to update an IAM user record is to retrieve the record and update with the modified values in a new body to update the IAM user record.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateAuthProfile(params *CreateAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthProfileOK, error)

	CreateCredential(params *CreateCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateCredentialOK, error)

	CreateEnterprise(params *CreateEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateEnterpriseOK, error)

	CreateRealm(params *CreateRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateRealmOK, error)

	CreateRole(params *CreateRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateRoleOK, error)

	CreateUser(params *CreateUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateUserOK, error)

	CreateUserSessionSelf(params *CreateUserSessionSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateUserSessionSelfOK, error)

	DeleteAuthProfile(params *DeleteAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthProfileOK, error)

	DeleteCredential(params *DeleteCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCredentialOK, error)

	DeleteEnterprise(params *DeleteEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteEnterpriseOK, error)

	DeleteRealm(params *DeleteRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRealmOK, error)

	DeleteRole(params *DeleteRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRoleOK, error)

	DeleteUser(params *DeleteUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteUserOK, error)

	GetAuthProfile(params *GetAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthProfileOK, error)

	GetAuthProfileByName(params *GetAuthProfileByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthProfileByNameOK, error)

	GetEnterprise(params *GetEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseOK, error)

	GetEnterpriseByName(params *GetEnterpriseByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseByNameOK, error)

	GetEnterpriseSelf(params *GetEnterpriseSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetEnterpriseSelfOK, error)

	GetRealm(params *GetRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRealmOK, error)

	GetRealmByName(params *GetRealmByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRealmByNameOK, error)

	GetRole(params *GetRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleOK, error)

	GetRoleByName(params *GetRoleByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleByNameOK, error)

	GetRoleSelf(params *GetRoleSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRoleSelfOK, error)

	GetUser(params *GetUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserOK, error)

	GetUserByName(params *GetUserByNameParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserByNameOK, error)

	GetUserSelf(params *GetUserSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSelfOK, error)

	GetUserSession(params *GetUserSessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSessionOK, error)

	GetUserSessionSelf(params *GetUserSessionSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUserSessionSelfOK, error)

	Login(params *LoginParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginOK, error)

	LoginExternal(params *LoginExternalParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginExternalOK, error)

	LoginExternalOAuth2Callback(params *LoginExternalOAuth2CallbackParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginExternalOAuth2CallbackOK, error)

	LoginForgotPassword(params *LoginForgotPasswordParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginForgotPasswordOK, error)

	LoginMode(params *LoginModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LoginModeOK, error)

	Logout(params *LogoutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*LogoutOK, error)

	QueryAuthProfiles(params *QueryAuthProfilesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryAuthProfilesOK, error)

	QueryEnterprises(params *QueryEnterprisesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryEnterprisesOK, error)

	QueryRealms(params *QueryRealmsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryRealmsOK, error)

	QueryRoles(params *QueryRolesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryRolesOK, error)

	QueryUserSessions(params *QueryUserSessionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryUserSessionsOK, error)

	QueryUsers(params *QueryUsersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*QueryUsersOK, error)

	RefreshUserSession(params *RefreshUserSessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RefreshUserSessionOK, error)

	SignupEnterprise(params *SignupEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SignupEnterpriseOK, error)

	SignupUser(params *SignupUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SignupUserOK, error)

	UpdateAuthProfile(params *UpdateAuthProfileParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthProfileOK, error)

	UpdateCredential(params *UpdateCredentialParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCredentialOK, error)

	UpdateCredentialSelf(params *UpdateCredentialSelfParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCredentialSelfOK, error)

	UpdateEnterprise(params *UpdateEnterpriseParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateEnterpriseOK, error)

	UpdateEnterprise2(params *UpdateEnterprise2Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateEnterprise2OK, error)

	UpdateRealm(params *UpdateRealmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRealmOK, error)

	UpdateRole(params *UpdateRoleParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRoleOK, error)

	UpdateUser(params *UpdateUserParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateUserOK, error)

	UpdateUser2(params *UpdateUser2Params, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateUser2OK, 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 identity access management API client.

type CreateAuthProfileBadRequest

type CreateAuthProfileBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateAuthProfileBadRequest

func NewCreateAuthProfileBadRequest() *CreateAuthProfileBadRequest

NewCreateAuthProfileBadRequest creates a CreateAuthProfileBadRequest with default headers values

func (*CreateAuthProfileBadRequest) Error

func (*CreateAuthProfileBadRequest) GetPayload

type CreateAuthProfileConflict

type CreateAuthProfileConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this AAA profile record will conflict with an already existing AAA profile record.

func NewCreateAuthProfileConflict

func NewCreateAuthProfileConflict() *CreateAuthProfileConflict

NewCreateAuthProfileConflict creates a CreateAuthProfileConflict with default headers values

func (*CreateAuthProfileConflict) Error

func (o *CreateAuthProfileConflict) Error() string

func (*CreateAuthProfileConflict) GetPayload

type CreateAuthProfileForbidden

type CreateAuthProfileForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateAuthProfileForbidden

func NewCreateAuthProfileForbidden() *CreateAuthProfileForbidden

NewCreateAuthProfileForbidden creates a CreateAuthProfileForbidden with default headers values

func (*CreateAuthProfileForbidden) Error

func (*CreateAuthProfileForbidden) GetPayload

type CreateAuthProfileGatewayTimeout

type CreateAuthProfileGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateAuthProfileGatewayTimeout

func NewCreateAuthProfileGatewayTimeout() *CreateAuthProfileGatewayTimeout

NewCreateAuthProfileGatewayTimeout creates a CreateAuthProfileGatewayTimeout with default headers values

func (*CreateAuthProfileGatewayTimeout) Error

func (*CreateAuthProfileGatewayTimeout) GetPayload

type CreateAuthProfileInternalServerError

type CreateAuthProfileInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateAuthProfileInternalServerError

func NewCreateAuthProfileInternalServerError() *CreateAuthProfileInternalServerError

NewCreateAuthProfileInternalServerError creates a CreateAuthProfileInternalServerError with default headers values

func (*CreateAuthProfileInternalServerError) Error

func (*CreateAuthProfileInternalServerError) GetPayload

type CreateAuthProfileOK

type CreateAuthProfileOK struct {
	Payload *swagger_models.CrudResponse
}
CreateAuthProfileOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateAuthProfileOK

func NewCreateAuthProfileOK() *CreateAuthProfileOK

NewCreateAuthProfileOK creates a CreateAuthProfileOK with default headers values

func (*CreateAuthProfileOK) Error

func (o *CreateAuthProfileOK) Error() string

func (*CreateAuthProfileOK) GetPayload

type CreateAuthProfileParams

type CreateAuthProfileParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AuthorizationProfile

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

CreateAuthProfileParams contains all the parameters to send to the API endpoint

for the create auth profile operation.

Typically these are written to a http.Request.

func NewCreateAuthProfileParams

func NewCreateAuthProfileParams() *CreateAuthProfileParams

NewCreateAuthProfileParams creates a new CreateAuthProfileParams 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 NewCreateAuthProfileParamsWithContext

func NewCreateAuthProfileParamsWithContext(ctx context.Context) *CreateAuthProfileParams

NewCreateAuthProfileParamsWithContext creates a new CreateAuthProfileParams object with the ability to set a context for a request.

func NewCreateAuthProfileParamsWithHTTPClient

func NewCreateAuthProfileParamsWithHTTPClient(client *http.Client) *CreateAuthProfileParams

NewCreateAuthProfileParamsWithHTTPClient creates a new CreateAuthProfileParams object with the ability to set a custom HTTPClient for a request.

func NewCreateAuthProfileParamsWithTimeout

func NewCreateAuthProfileParamsWithTimeout(timeout time.Duration) *CreateAuthProfileParams

NewCreateAuthProfileParamsWithTimeout creates a new CreateAuthProfileParams object with the ability to set a timeout on a request.

func (*CreateAuthProfileParams) SetBody

SetBody adds the body to the create auth profile params

func (*CreateAuthProfileParams) SetContext

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

SetContext adds the context to the create auth profile params

func (*CreateAuthProfileParams) SetDefaults

func (o *CreateAuthProfileParams) SetDefaults()

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

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

func (*CreateAuthProfileParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create auth profile params

func (*CreateAuthProfileParams) SetTimeout

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

SetTimeout adds the timeout to the create auth profile params

func (*CreateAuthProfileParams) SetXRequestID

func (o *CreateAuthProfileParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create auth profile params

func (*CreateAuthProfileParams) WithBody

WithBody adds the body to the create auth profile params

func (*CreateAuthProfileParams) WithContext

WithContext adds the context to the create auth profile params

func (*CreateAuthProfileParams) WithDefaults

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

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

func (*CreateAuthProfileParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create auth profile params

func (*CreateAuthProfileParams) WithTimeout

WithTimeout adds the timeout to the create auth profile params

func (*CreateAuthProfileParams) WithXRequestID

func (o *CreateAuthProfileParams) WithXRequestID(xRequestID *string) *CreateAuthProfileParams

WithXRequestID adds the xRequestID to the create auth profile params

func (*CreateAuthProfileParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateAuthProfileReader

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

CreateAuthProfileReader is a Reader for the CreateAuthProfile structure.

func (*CreateAuthProfileReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateAuthProfileUnauthorized

type CreateAuthProfileUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateAuthProfileUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateAuthProfileUnauthorized

func NewCreateAuthProfileUnauthorized() *CreateAuthProfileUnauthorized

NewCreateAuthProfileUnauthorized creates a CreateAuthProfileUnauthorized with default headers values

func (*CreateAuthProfileUnauthorized) Error

func (*CreateAuthProfileUnauthorized) GetPayload

type CreateCredentialBadRequest

type CreateCredentialBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateCredentialBadRequest

func NewCreateCredentialBadRequest() *CreateCredentialBadRequest

NewCreateCredentialBadRequest creates a CreateCredentialBadRequest with default headers values

func (*CreateCredentialBadRequest) Error

func (*CreateCredentialBadRequest) GetPayload

type CreateCredentialConflict

type CreateCredentialConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this IAM credential record will conflict with an already existing IAM credential record.

func NewCreateCredentialConflict

func NewCreateCredentialConflict() *CreateCredentialConflict

NewCreateCredentialConflict creates a CreateCredentialConflict with default headers values

func (*CreateCredentialConflict) Error

func (o *CreateCredentialConflict) Error() string

func (*CreateCredentialConflict) GetPayload

type CreateCredentialForbidden

type CreateCredentialForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateCredentialForbidden

func NewCreateCredentialForbidden() *CreateCredentialForbidden

NewCreateCredentialForbidden creates a CreateCredentialForbidden with default headers values

func (*CreateCredentialForbidden) Error

func (o *CreateCredentialForbidden) Error() string

func (*CreateCredentialForbidden) GetPayload

type CreateCredentialGatewayTimeout

type CreateCredentialGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateCredentialGatewayTimeout

func NewCreateCredentialGatewayTimeout() *CreateCredentialGatewayTimeout

NewCreateCredentialGatewayTimeout creates a CreateCredentialGatewayTimeout with default headers values

func (*CreateCredentialGatewayTimeout) Error

func (*CreateCredentialGatewayTimeout) GetPayload

type CreateCredentialInternalServerError

type CreateCredentialInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateCredentialInternalServerError

func NewCreateCredentialInternalServerError() *CreateCredentialInternalServerError

NewCreateCredentialInternalServerError creates a CreateCredentialInternalServerError with default headers values

func (*CreateCredentialInternalServerError) Error

func (*CreateCredentialInternalServerError) GetPayload

type CreateCredentialOK

type CreateCredentialOK struct {
	Payload *swagger_models.CrudResponse
}
CreateCredentialOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateCredentialOK

func NewCreateCredentialOK() *CreateCredentialOK

NewCreateCredentialOK creates a CreateCredentialOK with default headers values

func (*CreateCredentialOK) Error

func (o *CreateCredentialOK) Error() string

func (*CreateCredentialOK) GetPayload

type CreateCredentialParams

type CreateCredentialParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Credential

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

CreateCredentialParams contains all the parameters to send to the API endpoint

for the create credential operation.

Typically these are written to a http.Request.

func NewCreateCredentialParams

func NewCreateCredentialParams() *CreateCredentialParams

NewCreateCredentialParams creates a new CreateCredentialParams 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 NewCreateCredentialParamsWithContext

func NewCreateCredentialParamsWithContext(ctx context.Context) *CreateCredentialParams

NewCreateCredentialParamsWithContext creates a new CreateCredentialParams object with the ability to set a context for a request.

func NewCreateCredentialParamsWithHTTPClient

func NewCreateCredentialParamsWithHTTPClient(client *http.Client) *CreateCredentialParams

NewCreateCredentialParamsWithHTTPClient creates a new CreateCredentialParams object with the ability to set a custom HTTPClient for a request.

func NewCreateCredentialParamsWithTimeout

func NewCreateCredentialParamsWithTimeout(timeout time.Duration) *CreateCredentialParams

NewCreateCredentialParamsWithTimeout creates a new CreateCredentialParams object with the ability to set a timeout on a request.

func (*CreateCredentialParams) SetBody

SetBody adds the body to the create credential params

func (*CreateCredentialParams) SetContext

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

SetContext adds the context to the create credential params

func (*CreateCredentialParams) SetDefaults

func (o *CreateCredentialParams) SetDefaults()

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

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

func (*CreateCredentialParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create credential params

func (*CreateCredentialParams) SetTimeout

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

SetTimeout adds the timeout to the create credential params

func (*CreateCredentialParams) SetXRequestID

func (o *CreateCredentialParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create credential params

func (*CreateCredentialParams) WithBody

WithBody adds the body to the create credential params

func (*CreateCredentialParams) WithContext

WithContext adds the context to the create credential params

func (*CreateCredentialParams) WithDefaults

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

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

func (*CreateCredentialParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create credential params

func (*CreateCredentialParams) WithTimeout

WithTimeout adds the timeout to the create credential params

func (*CreateCredentialParams) WithXRequestID

func (o *CreateCredentialParams) WithXRequestID(xRequestID *string) *CreateCredentialParams

WithXRequestID adds the xRequestID to the create credential params

func (*CreateCredentialParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateCredentialReader

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

CreateCredentialReader is a Reader for the CreateCredential structure.

func (*CreateCredentialReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateCredentialUnauthorized

type CreateCredentialUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateCredentialUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateCredentialUnauthorized

func NewCreateCredentialUnauthorized() *CreateCredentialUnauthorized

NewCreateCredentialUnauthorized creates a CreateCredentialUnauthorized with default headers values

func (*CreateCredentialUnauthorized) Error

func (*CreateCredentialUnauthorized) GetPayload

type CreateEnterpriseBadRequest

type CreateEnterpriseBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateEnterpriseBadRequest

func NewCreateEnterpriseBadRequest() *CreateEnterpriseBadRequest

NewCreateEnterpriseBadRequest creates a CreateEnterpriseBadRequest with default headers values

func (*CreateEnterpriseBadRequest) Error

func (*CreateEnterpriseBadRequest) GetPayload

type CreateEnterpriseConflict

type CreateEnterpriseConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this IAM role record will conflict with an already existing IAM role record.

func NewCreateEnterpriseConflict

func NewCreateEnterpriseConflict() *CreateEnterpriseConflict

NewCreateEnterpriseConflict creates a CreateEnterpriseConflict with default headers values

func (*CreateEnterpriseConflict) Error

func (o *CreateEnterpriseConflict) Error() string

func (*CreateEnterpriseConflict) GetPayload

type CreateEnterpriseForbidden

type CreateEnterpriseForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateEnterpriseForbidden

func NewCreateEnterpriseForbidden() *CreateEnterpriseForbidden

NewCreateEnterpriseForbidden creates a CreateEnterpriseForbidden with default headers values

func (*CreateEnterpriseForbidden) Error

func (o *CreateEnterpriseForbidden) Error() string

func (*CreateEnterpriseForbidden) GetPayload

type CreateEnterpriseGatewayTimeout

type CreateEnterpriseGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateEnterpriseGatewayTimeout

func NewCreateEnterpriseGatewayTimeout() *CreateEnterpriseGatewayTimeout

NewCreateEnterpriseGatewayTimeout creates a CreateEnterpriseGatewayTimeout with default headers values

func (*CreateEnterpriseGatewayTimeout) Error

func (*CreateEnterpriseGatewayTimeout) GetPayload

type CreateEnterpriseInternalServerError

type CreateEnterpriseInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateEnterpriseInternalServerError

func NewCreateEnterpriseInternalServerError() *CreateEnterpriseInternalServerError

NewCreateEnterpriseInternalServerError creates a CreateEnterpriseInternalServerError with default headers values

func (*CreateEnterpriseInternalServerError) Error

func (*CreateEnterpriseInternalServerError) GetPayload

type CreateEnterpriseOK

type CreateEnterpriseOK struct {
	Payload *swagger_models.CrudResponse
}
CreateEnterpriseOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateEnterpriseOK

func NewCreateEnterpriseOK() *CreateEnterpriseOK

NewCreateEnterpriseOK creates a CreateEnterpriseOK with default headers values

func (*CreateEnterpriseOK) Error

func (o *CreateEnterpriseOK) Error() string

func (*CreateEnterpriseOK) GetPayload

type CreateEnterpriseParams

type CreateEnterpriseParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Enterprise

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

CreateEnterpriseParams contains all the parameters to send to the API endpoint

for the create enterprise operation.

Typically these are written to a http.Request.

func NewCreateEnterpriseParams

func NewCreateEnterpriseParams() *CreateEnterpriseParams

NewCreateEnterpriseParams creates a new CreateEnterpriseParams 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 NewCreateEnterpriseParamsWithContext

func NewCreateEnterpriseParamsWithContext(ctx context.Context) *CreateEnterpriseParams

NewCreateEnterpriseParamsWithContext creates a new CreateEnterpriseParams object with the ability to set a context for a request.

func NewCreateEnterpriseParamsWithHTTPClient

func NewCreateEnterpriseParamsWithHTTPClient(client *http.Client) *CreateEnterpriseParams

NewCreateEnterpriseParamsWithHTTPClient creates a new CreateEnterpriseParams object with the ability to set a custom HTTPClient for a request.

func NewCreateEnterpriseParamsWithTimeout

func NewCreateEnterpriseParamsWithTimeout(timeout time.Duration) *CreateEnterpriseParams

NewCreateEnterpriseParamsWithTimeout creates a new CreateEnterpriseParams object with the ability to set a timeout on a request.

func (*CreateEnterpriseParams) SetBody

SetBody adds the body to the create enterprise params

func (*CreateEnterpriseParams) SetContext

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

SetContext adds the context to the create enterprise params

func (*CreateEnterpriseParams) SetDefaults

func (o *CreateEnterpriseParams) SetDefaults()

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

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

func (*CreateEnterpriseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create enterprise params

func (*CreateEnterpriseParams) SetTimeout

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

SetTimeout adds the timeout to the create enterprise params

func (*CreateEnterpriseParams) SetXRequestID

func (o *CreateEnterpriseParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create enterprise params

func (*CreateEnterpriseParams) WithBody

WithBody adds the body to the create enterprise params

func (*CreateEnterpriseParams) WithContext

WithContext adds the context to the create enterprise params

func (*CreateEnterpriseParams) WithDefaults

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

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

func (*CreateEnterpriseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create enterprise params

func (*CreateEnterpriseParams) WithTimeout

WithTimeout adds the timeout to the create enterprise params

func (*CreateEnterpriseParams) WithXRequestID

func (o *CreateEnterpriseParams) WithXRequestID(xRequestID *string) *CreateEnterpriseParams

WithXRequestID adds the xRequestID to the create enterprise params

func (*CreateEnterpriseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateEnterpriseReader

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

CreateEnterpriseReader is a Reader for the CreateEnterprise structure.

func (*CreateEnterpriseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateEnterpriseUnauthorized

type CreateEnterpriseUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateEnterpriseUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateEnterpriseUnauthorized

func NewCreateEnterpriseUnauthorized() *CreateEnterpriseUnauthorized

NewCreateEnterpriseUnauthorized creates a CreateEnterpriseUnauthorized with default headers values

func (*CreateEnterpriseUnauthorized) Error

func (*CreateEnterpriseUnauthorized) GetPayload

type CreateRealmBadRequest

type CreateRealmBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateRealmBadRequest

func NewCreateRealmBadRequest() *CreateRealmBadRequest

NewCreateRealmBadRequest creates a CreateRealmBadRequest with default headers values

func (*CreateRealmBadRequest) Error

func (o *CreateRealmBadRequest) Error() string

func (*CreateRealmBadRequest) GetPayload

type CreateRealmConflict

type CreateRealmConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this realm will conflict with an already existing realm.

func NewCreateRealmConflict

func NewCreateRealmConflict() *CreateRealmConflict

NewCreateRealmConflict creates a CreateRealmConflict with default headers values

func (*CreateRealmConflict) Error

func (o *CreateRealmConflict) Error() string

func (*CreateRealmConflict) GetPayload

type CreateRealmForbidden

type CreateRealmForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateRealmForbidden

func NewCreateRealmForbidden() *CreateRealmForbidden

NewCreateRealmForbidden creates a CreateRealmForbidden with default headers values

func (*CreateRealmForbidden) Error

func (o *CreateRealmForbidden) Error() string

func (*CreateRealmForbidden) GetPayload

type CreateRealmGatewayTimeout

type CreateRealmGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateRealmGatewayTimeout

func NewCreateRealmGatewayTimeout() *CreateRealmGatewayTimeout

NewCreateRealmGatewayTimeout creates a CreateRealmGatewayTimeout with default headers values

func (*CreateRealmGatewayTimeout) Error

func (o *CreateRealmGatewayTimeout) Error() string

func (*CreateRealmGatewayTimeout) GetPayload

type CreateRealmInternalServerError

type CreateRealmInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateRealmInternalServerError

func NewCreateRealmInternalServerError() *CreateRealmInternalServerError

NewCreateRealmInternalServerError creates a CreateRealmInternalServerError with default headers values

func (*CreateRealmInternalServerError) Error

func (*CreateRealmInternalServerError) GetPayload

type CreateRealmOK

type CreateRealmOK struct {
	Payload *swagger_models.CrudResponse
}
CreateRealmOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateRealmOK

func NewCreateRealmOK() *CreateRealmOK

NewCreateRealmOK creates a CreateRealmOK with default headers values

func (*CreateRealmOK) Error

func (o *CreateRealmOK) Error() string

func (*CreateRealmOK) GetPayload

func (o *CreateRealmOK) GetPayload() *swagger_models.CrudResponse

type CreateRealmParams

type CreateRealmParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Realm

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

CreateRealmParams contains all the parameters to send to the API endpoint

for the create realm operation.

Typically these are written to a http.Request.

func NewCreateRealmParams

func NewCreateRealmParams() *CreateRealmParams

NewCreateRealmParams creates a new CreateRealmParams 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 NewCreateRealmParamsWithContext

func NewCreateRealmParamsWithContext(ctx context.Context) *CreateRealmParams

NewCreateRealmParamsWithContext creates a new CreateRealmParams object with the ability to set a context for a request.

func NewCreateRealmParamsWithHTTPClient

func NewCreateRealmParamsWithHTTPClient(client *http.Client) *CreateRealmParams

NewCreateRealmParamsWithHTTPClient creates a new CreateRealmParams object with the ability to set a custom HTTPClient for a request.

func NewCreateRealmParamsWithTimeout

func NewCreateRealmParamsWithTimeout(timeout time.Duration) *CreateRealmParams

NewCreateRealmParamsWithTimeout creates a new CreateRealmParams object with the ability to set a timeout on a request.

func (*CreateRealmParams) SetBody

func (o *CreateRealmParams) SetBody(body *swagger_models.Realm)

SetBody adds the body to the create realm params

func (*CreateRealmParams) SetContext

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

SetContext adds the context to the create realm params

func (*CreateRealmParams) SetDefaults

func (o *CreateRealmParams) SetDefaults()

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

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

func (*CreateRealmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create realm params

func (*CreateRealmParams) SetTimeout

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

SetTimeout adds the timeout to the create realm params

func (*CreateRealmParams) SetXRequestID

func (o *CreateRealmParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create realm params

func (*CreateRealmParams) WithBody

WithBody adds the body to the create realm params

func (*CreateRealmParams) WithContext

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

WithContext adds the context to the create realm params

func (*CreateRealmParams) WithDefaults

func (o *CreateRealmParams) WithDefaults() *CreateRealmParams

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

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

func (*CreateRealmParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create realm params

func (*CreateRealmParams) WithTimeout

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

WithTimeout adds the timeout to the create realm params

func (*CreateRealmParams) WithXRequestID

func (o *CreateRealmParams) WithXRequestID(xRequestID *string) *CreateRealmParams

WithXRequestID adds the xRequestID to the create realm params

func (*CreateRealmParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateRealmReader

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

CreateRealmReader is a Reader for the CreateRealm structure.

func (*CreateRealmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateRealmUnauthorized

type CreateRealmUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRealmUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateRealmUnauthorized

func NewCreateRealmUnauthorized() *CreateRealmUnauthorized

NewCreateRealmUnauthorized creates a CreateRealmUnauthorized with default headers values

func (*CreateRealmUnauthorized) Error

func (o *CreateRealmUnauthorized) Error() string

func (*CreateRealmUnauthorized) GetPayload

type CreateRoleBadRequest

type CreateRoleBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateRoleBadRequest

func NewCreateRoleBadRequest() *CreateRoleBadRequest

NewCreateRoleBadRequest creates a CreateRoleBadRequest with default headers values

func (*CreateRoleBadRequest) Error

func (o *CreateRoleBadRequest) Error() string

func (*CreateRoleBadRequest) GetPayload

type CreateRoleConflict

type CreateRoleConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this IAM role record will conflict with an already existing IAM role record.

func NewCreateRoleConflict

func NewCreateRoleConflict() *CreateRoleConflict

NewCreateRoleConflict creates a CreateRoleConflict with default headers values

func (*CreateRoleConflict) Error

func (o *CreateRoleConflict) Error() string

func (*CreateRoleConflict) GetPayload

type CreateRoleForbidden

type CreateRoleForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateRoleForbidden

func NewCreateRoleForbidden() *CreateRoleForbidden

NewCreateRoleForbidden creates a CreateRoleForbidden with default headers values

func (*CreateRoleForbidden) Error

func (o *CreateRoleForbidden) Error() string

func (*CreateRoleForbidden) GetPayload

type CreateRoleGatewayTimeout

type CreateRoleGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateRoleGatewayTimeout

func NewCreateRoleGatewayTimeout() *CreateRoleGatewayTimeout

NewCreateRoleGatewayTimeout creates a CreateRoleGatewayTimeout with default headers values

func (*CreateRoleGatewayTimeout) Error

func (o *CreateRoleGatewayTimeout) Error() string

func (*CreateRoleGatewayTimeout) GetPayload

type CreateRoleInternalServerError

type CreateRoleInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateRoleInternalServerError

func NewCreateRoleInternalServerError() *CreateRoleInternalServerError

NewCreateRoleInternalServerError creates a CreateRoleInternalServerError with default headers values

func (*CreateRoleInternalServerError) Error

func (*CreateRoleInternalServerError) GetPayload

type CreateRoleOK

type CreateRoleOK struct {
	Payload *swagger_models.CrudResponse
}
CreateRoleOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateRoleOK

func NewCreateRoleOK() *CreateRoleOK

NewCreateRoleOK creates a CreateRoleOK with default headers values

func (*CreateRoleOK) Error

func (o *CreateRoleOK) Error() string

func (*CreateRoleOK) GetPayload

func (o *CreateRoleOK) GetPayload() *swagger_models.CrudResponse

type CreateRoleParams

type CreateRoleParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Role

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

CreateRoleParams contains all the parameters to send to the API endpoint

for the create role operation.

Typically these are written to a http.Request.

func NewCreateRoleParams

func NewCreateRoleParams() *CreateRoleParams

NewCreateRoleParams creates a new CreateRoleParams 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 NewCreateRoleParamsWithContext

func NewCreateRoleParamsWithContext(ctx context.Context) *CreateRoleParams

NewCreateRoleParamsWithContext creates a new CreateRoleParams object with the ability to set a context for a request.

func NewCreateRoleParamsWithHTTPClient

func NewCreateRoleParamsWithHTTPClient(client *http.Client) *CreateRoleParams

NewCreateRoleParamsWithHTTPClient creates a new CreateRoleParams object with the ability to set a custom HTTPClient for a request.

func NewCreateRoleParamsWithTimeout

func NewCreateRoleParamsWithTimeout(timeout time.Duration) *CreateRoleParams

NewCreateRoleParamsWithTimeout creates a new CreateRoleParams object with the ability to set a timeout on a request.

func (*CreateRoleParams) SetBody

func (o *CreateRoleParams) SetBody(body *swagger_models.Role)

SetBody adds the body to the create role params

func (*CreateRoleParams) SetContext

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

SetContext adds the context to the create role params

func (*CreateRoleParams) SetDefaults

func (o *CreateRoleParams) SetDefaults()

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

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

func (*CreateRoleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create role params

func (*CreateRoleParams) SetTimeout

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

SetTimeout adds the timeout to the create role params

func (*CreateRoleParams) SetXRequestID

func (o *CreateRoleParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create role params

func (*CreateRoleParams) WithBody

WithBody adds the body to the create role params

func (*CreateRoleParams) WithContext

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

WithContext adds the context to the create role params

func (*CreateRoleParams) WithDefaults

func (o *CreateRoleParams) WithDefaults() *CreateRoleParams

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

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

func (*CreateRoleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create role params

func (*CreateRoleParams) WithTimeout

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

WithTimeout adds the timeout to the create role params

func (*CreateRoleParams) WithXRequestID

func (o *CreateRoleParams) WithXRequestID(xRequestID *string) *CreateRoleParams

WithXRequestID adds the xRequestID to the create role params

func (*CreateRoleParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateRoleReader

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

CreateRoleReader is a Reader for the CreateRole structure.

func (*CreateRoleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateRoleUnauthorized

type CreateRoleUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateRoleUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateRoleUnauthorized

func NewCreateRoleUnauthorized() *CreateRoleUnauthorized

NewCreateRoleUnauthorized creates a CreateRoleUnauthorized with default headers values

func (*CreateRoleUnauthorized) Error

func (o *CreateRoleUnauthorized) Error() string

func (*CreateRoleUnauthorized) GetPayload

type CreateUserBadRequest

type CreateUserBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of missing parameter or invalid value of parameters.

func NewCreateUserBadRequest

func NewCreateUserBadRequest() *CreateUserBadRequest

NewCreateUserBadRequest creates a CreateUserBadRequest with default headers values

func (*CreateUserBadRequest) Error

func (o *CreateUserBadRequest) Error() string

func (*CreateUserBadRequest) GetPayload

type CreateUserConflict

type CreateUserConflict struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this IAM user record will conflict with an already existing IAM user record.

func NewCreateUserConflict

func NewCreateUserConflict() *CreateUserConflict

NewCreateUserConflict creates a CreateUserConflict with default headers values

func (*CreateUserConflict) Error

func (o *CreateUserConflict) Error() string

func (*CreateUserConflict) GetPayload

type CreateUserForbidden

type CreateUserForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateUserForbidden

func NewCreateUserForbidden() *CreateUserForbidden

NewCreateUserForbidden creates a CreateUserForbidden with default headers values

func (*CreateUserForbidden) Error

func (o *CreateUserForbidden) Error() string

func (*CreateUserForbidden) GetPayload

type CreateUserGatewayTimeout

type CreateUserGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateUserGatewayTimeout

func NewCreateUserGatewayTimeout() *CreateUserGatewayTimeout

NewCreateUserGatewayTimeout creates a CreateUserGatewayTimeout with default headers values

func (*CreateUserGatewayTimeout) Error

func (o *CreateUserGatewayTimeout) Error() string

func (*CreateUserGatewayTimeout) GetPayload

type CreateUserInternalServerError

type CreateUserInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateUserInternalServerError

func NewCreateUserInternalServerError() *CreateUserInternalServerError

NewCreateUserInternalServerError creates a CreateUserInternalServerError with default headers values

func (*CreateUserInternalServerError) Error

func (*CreateUserInternalServerError) GetPayload

type CreateUserOK

type CreateUserOK struct {
	Payload *swagger_models.CrudResponse
}
CreateUserOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateUserOK

func NewCreateUserOK() *CreateUserOK

NewCreateUserOK creates a CreateUserOK with default headers values

func (*CreateUserOK) Error

func (o *CreateUserOK) Error() string

func (*CreateUserOK) GetPayload

func (o *CreateUserOK) GetPayload() *swagger_models.CrudResponse

type CreateUserParams

type CreateUserParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.DetailedUser

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

CreateUserParams contains all the parameters to send to the API endpoint

for the create user operation.

Typically these are written to a http.Request.

func NewCreateUserParams

func NewCreateUserParams() *CreateUserParams

NewCreateUserParams creates a new CreateUserParams 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 NewCreateUserParamsWithContext

func NewCreateUserParamsWithContext(ctx context.Context) *CreateUserParams

NewCreateUserParamsWithContext creates a new CreateUserParams object with the ability to set a context for a request.

func NewCreateUserParamsWithHTTPClient

func NewCreateUserParamsWithHTTPClient(client *http.Client) *CreateUserParams

NewCreateUserParamsWithHTTPClient creates a new CreateUserParams object with the ability to set a custom HTTPClient for a request.

func NewCreateUserParamsWithTimeout

func NewCreateUserParamsWithTimeout(timeout time.Duration) *CreateUserParams

NewCreateUserParamsWithTimeout creates a new CreateUserParams object with the ability to set a timeout on a request.

func (*CreateUserParams) SetBody

func (o *CreateUserParams) SetBody(body *swagger_models.DetailedUser)

SetBody adds the body to the create user params

func (*CreateUserParams) SetContext

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

SetContext adds the context to the create user params

func (*CreateUserParams) SetDefaults

func (o *CreateUserParams) SetDefaults()

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

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

func (*CreateUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create user params

func (*CreateUserParams) SetTimeout

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

SetTimeout adds the timeout to the create user params

func (*CreateUserParams) SetXRequestID

func (o *CreateUserParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create user params

func (*CreateUserParams) WithBody

WithBody adds the body to the create user params

func (*CreateUserParams) WithContext

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

WithContext adds the context to the create user params

func (*CreateUserParams) WithDefaults

func (o *CreateUserParams) WithDefaults() *CreateUserParams

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

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

func (*CreateUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create user params

func (*CreateUserParams) WithTimeout

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

WithTimeout adds the timeout to the create user params

func (*CreateUserParams) WithXRequestID

func (o *CreateUserParams) WithXRequestID(xRequestID *string) *CreateUserParams

WithXRequestID adds the xRequestID to the create user params

func (*CreateUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateUserReader

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

CreateUserReader is a Reader for the CreateUser structure.

func (*CreateUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateUserSessionSelfForbidden

type CreateUserSessionSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserSessionSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewCreateUserSessionSelfForbidden

func NewCreateUserSessionSelfForbidden() *CreateUserSessionSelfForbidden

NewCreateUserSessionSelfForbidden creates a CreateUserSessionSelfForbidden with default headers values

func (*CreateUserSessionSelfForbidden) Error

func (*CreateUserSessionSelfForbidden) GetPayload

type CreateUserSessionSelfGatewayTimeout

type CreateUserSessionSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserSessionSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewCreateUserSessionSelfGatewayTimeout

func NewCreateUserSessionSelfGatewayTimeout() *CreateUserSessionSelfGatewayTimeout

NewCreateUserSessionSelfGatewayTimeout creates a CreateUserSessionSelfGatewayTimeout with default headers values

func (*CreateUserSessionSelfGatewayTimeout) Error

func (*CreateUserSessionSelfGatewayTimeout) GetPayload

type CreateUserSessionSelfInternalServerError

type CreateUserSessionSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserSessionSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewCreateUserSessionSelfInternalServerError

func NewCreateUserSessionSelfInternalServerError() *CreateUserSessionSelfInternalServerError

NewCreateUserSessionSelfInternalServerError creates a CreateUserSessionSelfInternalServerError with default headers values

func (*CreateUserSessionSelfInternalServerError) Error

func (*CreateUserSessionSelfInternalServerError) GetPayload

type CreateUserSessionSelfOK

type CreateUserSessionSelfOK struct {
	Payload *swagger_models.AAAFrontendGenerateTokenResponse
}
CreateUserSessionSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewCreateUserSessionSelfOK

func NewCreateUserSessionSelfOK() *CreateUserSessionSelfOK

NewCreateUserSessionSelfOK creates a CreateUserSessionSelfOK with default headers values

func (*CreateUserSessionSelfOK) Error

func (o *CreateUserSessionSelfOK) Error() string

func (*CreateUserSessionSelfOK) GetPayload

type CreateUserSessionSelfParams

type CreateUserSessionSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

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

CreateUserSessionSelfParams contains all the parameters to send to the API endpoint

for the create user session self operation.

Typically these are written to a http.Request.

func NewCreateUserSessionSelfParams

func NewCreateUserSessionSelfParams() *CreateUserSessionSelfParams

NewCreateUserSessionSelfParams creates a new CreateUserSessionSelfParams 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 NewCreateUserSessionSelfParamsWithContext

func NewCreateUserSessionSelfParamsWithContext(ctx context.Context) *CreateUserSessionSelfParams

NewCreateUserSessionSelfParamsWithContext creates a new CreateUserSessionSelfParams object with the ability to set a context for a request.

func NewCreateUserSessionSelfParamsWithHTTPClient

func NewCreateUserSessionSelfParamsWithHTTPClient(client *http.Client) *CreateUserSessionSelfParams

NewCreateUserSessionSelfParamsWithHTTPClient creates a new CreateUserSessionSelfParams object with the ability to set a custom HTTPClient for a request.

func NewCreateUserSessionSelfParamsWithTimeout

func NewCreateUserSessionSelfParamsWithTimeout(timeout time.Duration) *CreateUserSessionSelfParams

NewCreateUserSessionSelfParamsWithTimeout creates a new CreateUserSessionSelfParams object with the ability to set a timeout on a request.

func (*CreateUserSessionSelfParams) SetContext

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

SetContext adds the context to the create user session self params

func (*CreateUserSessionSelfParams) SetDefaults

func (o *CreateUserSessionSelfParams) SetDefaults()

SetDefaults hydrates default values in the create user session self params (not the query body).

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

func (*CreateUserSessionSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create user session self params

func (*CreateUserSessionSelfParams) SetTimeout

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

SetTimeout adds the timeout to the create user session self params

func (*CreateUserSessionSelfParams) SetXRequestID

func (o *CreateUserSessionSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the create user session self params

func (*CreateUserSessionSelfParams) WithContext

WithContext adds the context to the create user session self params

func (*CreateUserSessionSelfParams) WithDefaults

WithDefaults hydrates default values in the create user session self params (not the query body).

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

func (*CreateUserSessionSelfParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create user session self params

func (*CreateUserSessionSelfParams) WithTimeout

WithTimeout adds the timeout to the create user session self params

func (*CreateUserSessionSelfParams) WithXRequestID

func (o *CreateUserSessionSelfParams) WithXRequestID(xRequestID *string) *CreateUserSessionSelfParams

WithXRequestID adds the xRequestID to the create user session self params

func (*CreateUserSessionSelfParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateUserSessionSelfReader

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

CreateUserSessionSelfReader is a Reader for the CreateUserSessionSelf structure.

func (*CreateUserSessionSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateUserSessionSelfUnauthorized

type CreateUserSessionSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserSessionSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateUserSessionSelfUnauthorized

func NewCreateUserSessionSelfUnauthorized() *CreateUserSessionSelfUnauthorized

NewCreateUserSessionSelfUnauthorized creates a CreateUserSessionSelfUnauthorized with default headers values

func (*CreateUserSessionSelfUnauthorized) Error

func (*CreateUserSessionSelfUnauthorized) GetPayload

type CreateUserUnauthorized

type CreateUserUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
CreateUserUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewCreateUserUnauthorized

func NewCreateUserUnauthorized() *CreateUserUnauthorized

NewCreateUserUnauthorized creates a CreateUserUnauthorized with default headers values

func (*CreateUserUnauthorized) Error

func (o *CreateUserUnauthorized) Error() string

func (*CreateUserUnauthorized) GetPayload

type DeleteAuthProfileForbidden

type DeleteAuthProfileForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteAuthProfileForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteAuthProfileForbidden

func NewDeleteAuthProfileForbidden() *DeleteAuthProfileForbidden

NewDeleteAuthProfileForbidden creates a DeleteAuthProfileForbidden with default headers values

func (*DeleteAuthProfileForbidden) Error

func (*DeleteAuthProfileForbidden) GetPayload

type DeleteAuthProfileGatewayTimeout

type DeleteAuthProfileGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteAuthProfileGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteAuthProfileGatewayTimeout

func NewDeleteAuthProfileGatewayTimeout() *DeleteAuthProfileGatewayTimeout

NewDeleteAuthProfileGatewayTimeout creates a DeleteAuthProfileGatewayTimeout with default headers values

func (*DeleteAuthProfileGatewayTimeout) Error

func (*DeleteAuthProfileGatewayTimeout) GetPayload

type DeleteAuthProfileInternalServerError

type DeleteAuthProfileInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteAuthProfileInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteAuthProfileInternalServerError

func NewDeleteAuthProfileInternalServerError() *DeleteAuthProfileInternalServerError

NewDeleteAuthProfileInternalServerError creates a DeleteAuthProfileInternalServerError with default headers values

func (*DeleteAuthProfileInternalServerError) Error

func (*DeleteAuthProfileInternalServerError) GetPayload

type DeleteAuthProfileNotFound

type DeleteAuthProfileNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteAuthProfileNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteAuthProfileNotFound

func NewDeleteAuthProfileNotFound() *DeleteAuthProfileNotFound

NewDeleteAuthProfileNotFound creates a DeleteAuthProfileNotFound with default headers values

func (*DeleteAuthProfileNotFound) Error

func (o *DeleteAuthProfileNotFound) Error() string

func (*DeleteAuthProfileNotFound) GetPayload

type DeleteAuthProfileOK

type DeleteAuthProfileOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteAuthProfileOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteAuthProfileOK

func NewDeleteAuthProfileOK() *DeleteAuthProfileOK

NewDeleteAuthProfileOK creates a DeleteAuthProfileOK with default headers values

func (*DeleteAuthProfileOK) Error

func (o *DeleteAuthProfileOK) Error() string

func (*DeleteAuthProfileOK) GetPayload

type DeleteAuthProfileParams

type DeleteAuthProfileParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteAuthProfileParams contains all the parameters to send to the API endpoint

for the delete auth profile operation.

Typically these are written to a http.Request.

func NewDeleteAuthProfileParams

func NewDeleteAuthProfileParams() *DeleteAuthProfileParams

NewDeleteAuthProfileParams creates a new DeleteAuthProfileParams 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 NewDeleteAuthProfileParamsWithContext

func NewDeleteAuthProfileParamsWithContext(ctx context.Context) *DeleteAuthProfileParams

NewDeleteAuthProfileParamsWithContext creates a new DeleteAuthProfileParams object with the ability to set a context for a request.

func NewDeleteAuthProfileParamsWithHTTPClient

func NewDeleteAuthProfileParamsWithHTTPClient(client *http.Client) *DeleteAuthProfileParams

NewDeleteAuthProfileParamsWithHTTPClient creates a new DeleteAuthProfileParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAuthProfileParamsWithTimeout

func NewDeleteAuthProfileParamsWithTimeout(timeout time.Duration) *DeleteAuthProfileParams

NewDeleteAuthProfileParamsWithTimeout creates a new DeleteAuthProfileParams object with the ability to set a timeout on a request.

func (*DeleteAuthProfileParams) SetContext

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

SetContext adds the context to the delete auth profile params

func (*DeleteAuthProfileParams) SetDefaults

func (o *DeleteAuthProfileParams) SetDefaults()

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

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

func (*DeleteAuthProfileParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete auth profile params

func (*DeleteAuthProfileParams) SetID

func (o *DeleteAuthProfileParams) SetID(id string)

SetID adds the id to the delete auth profile params

func (*DeleteAuthProfileParams) SetTimeout

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

SetTimeout adds the timeout to the delete auth profile params

func (*DeleteAuthProfileParams) SetXRequestID

func (o *DeleteAuthProfileParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete auth profile params

func (*DeleteAuthProfileParams) WithContext

WithContext adds the context to the delete auth profile params

func (*DeleteAuthProfileParams) WithDefaults

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

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

func (*DeleteAuthProfileParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete auth profile params

func (*DeleteAuthProfileParams) WithID

WithID adds the id to the delete auth profile params

func (*DeleteAuthProfileParams) WithTimeout

WithTimeout adds the timeout to the delete auth profile params

func (*DeleteAuthProfileParams) WithXRequestID

func (o *DeleteAuthProfileParams) WithXRequestID(xRequestID *string) *DeleteAuthProfileParams

WithXRequestID adds the xRequestID to the delete auth profile params

func (*DeleteAuthProfileParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAuthProfileReader

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

DeleteAuthProfileReader is a Reader for the DeleteAuthProfile structure.

func (*DeleteAuthProfileReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAuthProfileUnauthorized

type DeleteAuthProfileUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteAuthProfileUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteAuthProfileUnauthorized

func NewDeleteAuthProfileUnauthorized() *DeleteAuthProfileUnauthorized

NewDeleteAuthProfileUnauthorized creates a DeleteAuthProfileUnauthorized with default headers values

func (*DeleteAuthProfileUnauthorized) Error

func (*DeleteAuthProfileUnauthorized) GetPayload

type DeleteCredentialForbidden

type DeleteCredentialForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteCredentialForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteCredentialForbidden

func NewDeleteCredentialForbidden() *DeleteCredentialForbidden

NewDeleteCredentialForbidden creates a DeleteCredentialForbidden with default headers values

func (*DeleteCredentialForbidden) Error

func (o *DeleteCredentialForbidden) Error() string

func (*DeleteCredentialForbidden) GetPayload

type DeleteCredentialGatewayTimeout

type DeleteCredentialGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteCredentialGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteCredentialGatewayTimeout

func NewDeleteCredentialGatewayTimeout() *DeleteCredentialGatewayTimeout

NewDeleteCredentialGatewayTimeout creates a DeleteCredentialGatewayTimeout with default headers values

func (*DeleteCredentialGatewayTimeout) Error

func (*DeleteCredentialGatewayTimeout) GetPayload

type DeleteCredentialInternalServerError

type DeleteCredentialInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteCredentialInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteCredentialInternalServerError

func NewDeleteCredentialInternalServerError() *DeleteCredentialInternalServerError

NewDeleteCredentialInternalServerError creates a DeleteCredentialInternalServerError with default headers values

func (*DeleteCredentialInternalServerError) Error

func (*DeleteCredentialInternalServerError) GetPayload

type DeleteCredentialNotFound

type DeleteCredentialNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteCredentialNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteCredentialNotFound

func NewDeleteCredentialNotFound() *DeleteCredentialNotFound

NewDeleteCredentialNotFound creates a DeleteCredentialNotFound with default headers values

func (*DeleteCredentialNotFound) Error

func (o *DeleteCredentialNotFound) Error() string

func (*DeleteCredentialNotFound) GetPayload

type DeleteCredentialOK

type DeleteCredentialOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteCredentialOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteCredentialOK

func NewDeleteCredentialOK() *DeleteCredentialOK

NewDeleteCredentialOK creates a DeleteCredentialOK with default headers values

func (*DeleteCredentialOK) Error

func (o *DeleteCredentialOK) Error() string

func (*DeleteCredentialOK) GetPayload

type DeleteCredentialParams

type DeleteCredentialParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteCredentialParams contains all the parameters to send to the API endpoint

for the delete credential operation.

Typically these are written to a http.Request.

func NewDeleteCredentialParams

func NewDeleteCredentialParams() *DeleteCredentialParams

NewDeleteCredentialParams creates a new DeleteCredentialParams 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 NewDeleteCredentialParamsWithContext

func NewDeleteCredentialParamsWithContext(ctx context.Context) *DeleteCredentialParams

NewDeleteCredentialParamsWithContext creates a new DeleteCredentialParams object with the ability to set a context for a request.

func NewDeleteCredentialParamsWithHTTPClient

func NewDeleteCredentialParamsWithHTTPClient(client *http.Client) *DeleteCredentialParams

NewDeleteCredentialParamsWithHTTPClient creates a new DeleteCredentialParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCredentialParamsWithTimeout

func NewDeleteCredentialParamsWithTimeout(timeout time.Duration) *DeleteCredentialParams

NewDeleteCredentialParamsWithTimeout creates a new DeleteCredentialParams object with the ability to set a timeout on a request.

func (*DeleteCredentialParams) SetContext

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

SetContext adds the context to the delete credential params

func (*DeleteCredentialParams) SetDefaults

func (o *DeleteCredentialParams) SetDefaults()

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

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

func (*DeleteCredentialParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete credential params

func (*DeleteCredentialParams) SetID

func (o *DeleteCredentialParams) SetID(id string)

SetID adds the id to the delete credential params

func (*DeleteCredentialParams) SetTimeout

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

SetTimeout adds the timeout to the delete credential params

func (*DeleteCredentialParams) SetXRequestID

func (o *DeleteCredentialParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete credential params

func (*DeleteCredentialParams) WithContext

WithContext adds the context to the delete credential params

func (*DeleteCredentialParams) WithDefaults

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

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

func (*DeleteCredentialParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete credential params

func (*DeleteCredentialParams) WithID

WithID adds the id to the delete credential params

func (*DeleteCredentialParams) WithTimeout

WithTimeout adds the timeout to the delete credential params

func (*DeleteCredentialParams) WithXRequestID

func (o *DeleteCredentialParams) WithXRequestID(xRequestID *string) *DeleteCredentialParams

WithXRequestID adds the xRequestID to the delete credential params

func (*DeleteCredentialParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCredentialReader

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

DeleteCredentialReader is a Reader for the DeleteCredential structure.

func (*DeleteCredentialReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteCredentialUnauthorized

type DeleteCredentialUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteCredentialUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteCredentialUnauthorized

func NewDeleteCredentialUnauthorized() *DeleteCredentialUnauthorized

NewDeleteCredentialUnauthorized creates a DeleteCredentialUnauthorized with default headers values

func (*DeleteCredentialUnauthorized) Error

func (*DeleteCredentialUnauthorized) GetPayload

type DeleteEnterpriseConflict

type DeleteEnterpriseConflict struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because there are IAM users of this IAM role

func NewDeleteEnterpriseConflict

func NewDeleteEnterpriseConflict() *DeleteEnterpriseConflict

NewDeleteEnterpriseConflict creates a DeleteEnterpriseConflict with default headers values

func (*DeleteEnterpriseConflict) Error

func (o *DeleteEnterpriseConflict) Error() string

func (*DeleteEnterpriseConflict) GetPayload

type DeleteEnterpriseForbidden

type DeleteEnterpriseForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteEnterpriseForbidden

func NewDeleteEnterpriseForbidden() *DeleteEnterpriseForbidden

NewDeleteEnterpriseForbidden creates a DeleteEnterpriseForbidden with default headers values

func (*DeleteEnterpriseForbidden) Error

func (o *DeleteEnterpriseForbidden) Error() string

func (*DeleteEnterpriseForbidden) GetPayload

type DeleteEnterpriseGatewayTimeout

type DeleteEnterpriseGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteEnterpriseGatewayTimeout

func NewDeleteEnterpriseGatewayTimeout() *DeleteEnterpriseGatewayTimeout

NewDeleteEnterpriseGatewayTimeout creates a DeleteEnterpriseGatewayTimeout with default headers values

func (*DeleteEnterpriseGatewayTimeout) Error

func (*DeleteEnterpriseGatewayTimeout) GetPayload

type DeleteEnterpriseInternalServerError

type DeleteEnterpriseInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteEnterpriseInternalServerError

func NewDeleteEnterpriseInternalServerError() *DeleteEnterpriseInternalServerError

NewDeleteEnterpriseInternalServerError creates a DeleteEnterpriseInternalServerError with default headers values

func (*DeleteEnterpriseInternalServerError) Error

func (*DeleteEnterpriseInternalServerError) GetPayload

type DeleteEnterpriseNotFound

type DeleteEnterpriseNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteEnterpriseNotFound

func NewDeleteEnterpriseNotFound() *DeleteEnterpriseNotFound

NewDeleteEnterpriseNotFound creates a DeleteEnterpriseNotFound with default headers values

func (*DeleteEnterpriseNotFound) Error

func (o *DeleteEnterpriseNotFound) Error() string

func (*DeleteEnterpriseNotFound) GetPayload

type DeleteEnterpriseOK

type DeleteEnterpriseOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteEnterpriseOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteEnterpriseOK

func NewDeleteEnterpriseOK() *DeleteEnterpriseOK

NewDeleteEnterpriseOK creates a DeleteEnterpriseOK with default headers values

func (*DeleteEnterpriseOK) Error

func (o *DeleteEnterpriseOK) Error() string

func (*DeleteEnterpriseOK) GetPayload

type DeleteEnterpriseParams

type DeleteEnterpriseParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteEnterpriseParams contains all the parameters to send to the API endpoint

for the delete enterprise operation.

Typically these are written to a http.Request.

func NewDeleteEnterpriseParams

func NewDeleteEnterpriseParams() *DeleteEnterpriseParams

NewDeleteEnterpriseParams creates a new DeleteEnterpriseParams 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 NewDeleteEnterpriseParamsWithContext

func NewDeleteEnterpriseParamsWithContext(ctx context.Context) *DeleteEnterpriseParams

NewDeleteEnterpriseParamsWithContext creates a new DeleteEnterpriseParams object with the ability to set a context for a request.

func NewDeleteEnterpriseParamsWithHTTPClient

func NewDeleteEnterpriseParamsWithHTTPClient(client *http.Client) *DeleteEnterpriseParams

NewDeleteEnterpriseParamsWithHTTPClient creates a new DeleteEnterpriseParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteEnterpriseParamsWithTimeout

func NewDeleteEnterpriseParamsWithTimeout(timeout time.Duration) *DeleteEnterpriseParams

NewDeleteEnterpriseParamsWithTimeout creates a new DeleteEnterpriseParams object with the ability to set a timeout on a request.

func (*DeleteEnterpriseParams) SetContext

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

SetContext adds the context to the delete enterprise params

func (*DeleteEnterpriseParams) SetDefaults

func (o *DeleteEnterpriseParams) SetDefaults()

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

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

func (*DeleteEnterpriseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete enterprise params

func (*DeleteEnterpriseParams) SetID

func (o *DeleteEnterpriseParams) SetID(id string)

SetID adds the id to the delete enterprise params

func (*DeleteEnterpriseParams) SetTimeout

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

SetTimeout adds the timeout to the delete enterprise params

func (*DeleteEnterpriseParams) SetXRequestID

func (o *DeleteEnterpriseParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete enterprise params

func (*DeleteEnterpriseParams) WithContext

WithContext adds the context to the delete enterprise params

func (*DeleteEnterpriseParams) WithDefaults

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

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

func (*DeleteEnterpriseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete enterprise params

func (*DeleteEnterpriseParams) WithID

WithID adds the id to the delete enterprise params

func (*DeleteEnterpriseParams) WithTimeout

WithTimeout adds the timeout to the delete enterprise params

func (*DeleteEnterpriseParams) WithXRequestID

func (o *DeleteEnterpriseParams) WithXRequestID(xRequestID *string) *DeleteEnterpriseParams

WithXRequestID adds the xRequestID to the delete enterprise params

func (*DeleteEnterpriseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteEnterpriseReader

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

DeleteEnterpriseReader is a Reader for the DeleteEnterprise structure.

func (*DeleteEnterpriseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteEnterpriseUnauthorized

type DeleteEnterpriseUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteEnterpriseUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteEnterpriseUnauthorized

func NewDeleteEnterpriseUnauthorized() *DeleteEnterpriseUnauthorized

NewDeleteEnterpriseUnauthorized creates a DeleteEnterpriseUnauthorized with default headers values

func (*DeleteEnterpriseUnauthorized) Error

func (*DeleteEnterpriseUnauthorized) GetPayload

type DeleteRealmForbidden

type DeleteRealmForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRealmForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteRealmForbidden

func NewDeleteRealmForbidden() *DeleteRealmForbidden

NewDeleteRealmForbidden creates a DeleteRealmForbidden with default headers values

func (*DeleteRealmForbidden) Error

func (o *DeleteRealmForbidden) Error() string

func (*DeleteRealmForbidden) GetPayload

type DeleteRealmGatewayTimeout

type DeleteRealmGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRealmGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteRealmGatewayTimeout

func NewDeleteRealmGatewayTimeout() *DeleteRealmGatewayTimeout

NewDeleteRealmGatewayTimeout creates a DeleteRealmGatewayTimeout with default headers values

func (*DeleteRealmGatewayTimeout) Error

func (o *DeleteRealmGatewayTimeout) Error() string

func (*DeleteRealmGatewayTimeout) GetPayload

type DeleteRealmInternalServerError

type DeleteRealmInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRealmInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteRealmInternalServerError

func NewDeleteRealmInternalServerError() *DeleteRealmInternalServerError

NewDeleteRealmInternalServerError creates a DeleteRealmInternalServerError with default headers values

func (*DeleteRealmInternalServerError) Error

func (*DeleteRealmInternalServerError) GetPayload

type DeleteRealmNotFound

type DeleteRealmNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRealmNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteRealmNotFound

func NewDeleteRealmNotFound() *DeleteRealmNotFound

NewDeleteRealmNotFound creates a DeleteRealmNotFound with default headers values

func (*DeleteRealmNotFound) Error

func (o *DeleteRealmNotFound) Error() string

func (*DeleteRealmNotFound) GetPayload

type DeleteRealmOK

type DeleteRealmOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteRealmOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteRealmOK

func NewDeleteRealmOK() *DeleteRealmOK

NewDeleteRealmOK creates a DeleteRealmOK with default headers values

func (*DeleteRealmOK) Error

func (o *DeleteRealmOK) Error() string

func (*DeleteRealmOK) GetPayload

func (o *DeleteRealmOK) GetPayload() *swagger_models.CrudResponse

type DeleteRealmParams

type DeleteRealmParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteRealmParams contains all the parameters to send to the API endpoint

for the delete realm operation.

Typically these are written to a http.Request.

func NewDeleteRealmParams

func NewDeleteRealmParams() *DeleteRealmParams

NewDeleteRealmParams creates a new DeleteRealmParams 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 NewDeleteRealmParamsWithContext

func NewDeleteRealmParamsWithContext(ctx context.Context) *DeleteRealmParams

NewDeleteRealmParamsWithContext creates a new DeleteRealmParams object with the ability to set a context for a request.

func NewDeleteRealmParamsWithHTTPClient

func NewDeleteRealmParamsWithHTTPClient(client *http.Client) *DeleteRealmParams

NewDeleteRealmParamsWithHTTPClient creates a new DeleteRealmParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteRealmParamsWithTimeout

func NewDeleteRealmParamsWithTimeout(timeout time.Duration) *DeleteRealmParams

NewDeleteRealmParamsWithTimeout creates a new DeleteRealmParams object with the ability to set a timeout on a request.

func (*DeleteRealmParams) SetContext

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

SetContext adds the context to the delete realm params

func (*DeleteRealmParams) SetDefaults

func (o *DeleteRealmParams) SetDefaults()

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

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

func (*DeleteRealmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete realm params

func (*DeleteRealmParams) SetID

func (o *DeleteRealmParams) SetID(id string)

SetID adds the id to the delete realm params

func (*DeleteRealmParams) SetTimeout

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

SetTimeout adds the timeout to the delete realm params

func (*DeleteRealmParams) SetXRequestID

func (o *DeleteRealmParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete realm params

func (*DeleteRealmParams) WithContext

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

WithContext adds the context to the delete realm params

func (*DeleteRealmParams) WithDefaults

func (o *DeleteRealmParams) WithDefaults() *DeleteRealmParams

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

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

func (*DeleteRealmParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete realm params

func (*DeleteRealmParams) WithID

WithID adds the id to the delete realm params

func (*DeleteRealmParams) WithTimeout

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

WithTimeout adds the timeout to the delete realm params

func (*DeleteRealmParams) WithXRequestID

func (o *DeleteRealmParams) WithXRequestID(xRequestID *string) *DeleteRealmParams

WithXRequestID adds the xRequestID to the delete realm params

func (*DeleteRealmParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteRealmReader

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

DeleteRealmReader is a Reader for the DeleteRealm structure.

func (*DeleteRealmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteRealmUnauthorized

type DeleteRealmUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRealmUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteRealmUnauthorized

func NewDeleteRealmUnauthorized() *DeleteRealmUnauthorized

NewDeleteRealmUnauthorized creates a DeleteRealmUnauthorized with default headers values

func (*DeleteRealmUnauthorized) Error

func (o *DeleteRealmUnauthorized) Error() string

func (*DeleteRealmUnauthorized) GetPayload

type DeleteRoleConflict

type DeleteRoleConflict struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because there are IAM users of this IAM role

func NewDeleteRoleConflict

func NewDeleteRoleConflict() *DeleteRoleConflict

NewDeleteRoleConflict creates a DeleteRoleConflict with default headers values

func (*DeleteRoleConflict) Error

func (o *DeleteRoleConflict) Error() string

func (*DeleteRoleConflict) GetPayload

type DeleteRoleForbidden

type DeleteRoleForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteRoleForbidden

func NewDeleteRoleForbidden() *DeleteRoleForbidden

NewDeleteRoleForbidden creates a DeleteRoleForbidden with default headers values

func (*DeleteRoleForbidden) Error

func (o *DeleteRoleForbidden) Error() string

func (*DeleteRoleForbidden) GetPayload

type DeleteRoleGatewayTimeout

type DeleteRoleGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteRoleGatewayTimeout

func NewDeleteRoleGatewayTimeout() *DeleteRoleGatewayTimeout

NewDeleteRoleGatewayTimeout creates a DeleteRoleGatewayTimeout with default headers values

func (*DeleteRoleGatewayTimeout) Error

func (o *DeleteRoleGatewayTimeout) Error() string

func (*DeleteRoleGatewayTimeout) GetPayload

type DeleteRoleInternalServerError

type DeleteRoleInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteRoleInternalServerError

func NewDeleteRoleInternalServerError() *DeleteRoleInternalServerError

NewDeleteRoleInternalServerError creates a DeleteRoleInternalServerError with default headers values

func (*DeleteRoleInternalServerError) Error

func (*DeleteRoleInternalServerError) GetPayload

type DeleteRoleNotFound

type DeleteRoleNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteRoleNotFound

func NewDeleteRoleNotFound() *DeleteRoleNotFound

NewDeleteRoleNotFound creates a DeleteRoleNotFound with default headers values

func (*DeleteRoleNotFound) Error

func (o *DeleteRoleNotFound) Error() string

func (*DeleteRoleNotFound) GetPayload

type DeleteRoleOK

type DeleteRoleOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteRoleOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteRoleOK

func NewDeleteRoleOK() *DeleteRoleOK

NewDeleteRoleOK creates a DeleteRoleOK with default headers values

func (*DeleteRoleOK) Error

func (o *DeleteRoleOK) Error() string

func (*DeleteRoleOK) GetPayload

func (o *DeleteRoleOK) GetPayload() *swagger_models.CrudResponse

type DeleteRoleParams

type DeleteRoleParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteRoleParams contains all the parameters to send to the API endpoint

for the delete role operation.

Typically these are written to a http.Request.

func NewDeleteRoleParams

func NewDeleteRoleParams() *DeleteRoleParams

NewDeleteRoleParams creates a new DeleteRoleParams 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 NewDeleteRoleParamsWithContext

func NewDeleteRoleParamsWithContext(ctx context.Context) *DeleteRoleParams

NewDeleteRoleParamsWithContext creates a new DeleteRoleParams object with the ability to set a context for a request.

func NewDeleteRoleParamsWithHTTPClient

func NewDeleteRoleParamsWithHTTPClient(client *http.Client) *DeleteRoleParams

NewDeleteRoleParamsWithHTTPClient creates a new DeleteRoleParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteRoleParamsWithTimeout

func NewDeleteRoleParamsWithTimeout(timeout time.Duration) *DeleteRoleParams

NewDeleteRoleParamsWithTimeout creates a new DeleteRoleParams object with the ability to set a timeout on a request.

func (*DeleteRoleParams) SetContext

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

SetContext adds the context to the delete role params

func (*DeleteRoleParams) SetDefaults

func (o *DeleteRoleParams) SetDefaults()

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

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

func (*DeleteRoleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete role params

func (*DeleteRoleParams) SetID

func (o *DeleteRoleParams) SetID(id string)

SetID adds the id to the delete role params

func (*DeleteRoleParams) SetTimeout

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

SetTimeout adds the timeout to the delete role params

func (*DeleteRoleParams) SetXRequestID

func (o *DeleteRoleParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete role params

func (*DeleteRoleParams) WithContext

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

WithContext adds the context to the delete role params

func (*DeleteRoleParams) WithDefaults

func (o *DeleteRoleParams) WithDefaults() *DeleteRoleParams

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

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

func (*DeleteRoleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete role params

func (*DeleteRoleParams) WithID

func (o *DeleteRoleParams) WithID(id string) *DeleteRoleParams

WithID adds the id to the delete role params

func (*DeleteRoleParams) WithTimeout

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

WithTimeout adds the timeout to the delete role params

func (*DeleteRoleParams) WithXRequestID

func (o *DeleteRoleParams) WithXRequestID(xRequestID *string) *DeleteRoleParams

WithXRequestID adds the xRequestID to the delete role params

func (*DeleteRoleParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteRoleReader

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

DeleteRoleReader is a Reader for the DeleteRole structure.

func (*DeleteRoleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteRoleUnauthorized

type DeleteRoleUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteRoleUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteRoleUnauthorized

func NewDeleteRoleUnauthorized() *DeleteRoleUnauthorized

NewDeleteRoleUnauthorized creates a DeleteRoleUnauthorized with default headers values

func (*DeleteRoleUnauthorized) Error

func (o *DeleteRoleUnauthorized) Error() string

func (*DeleteRoleUnauthorized) GetPayload

type DeleteUserForbidden

type DeleteUserForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteUserForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewDeleteUserForbidden

func NewDeleteUserForbidden() *DeleteUserForbidden

NewDeleteUserForbidden creates a DeleteUserForbidden with default headers values

func (*DeleteUserForbidden) Error

func (o *DeleteUserForbidden) Error() string

func (*DeleteUserForbidden) GetPayload

type DeleteUserGatewayTimeout

type DeleteUserGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteUserGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewDeleteUserGatewayTimeout

func NewDeleteUserGatewayTimeout() *DeleteUserGatewayTimeout

NewDeleteUserGatewayTimeout creates a DeleteUserGatewayTimeout with default headers values

func (*DeleteUserGatewayTimeout) Error

func (o *DeleteUserGatewayTimeout) Error() string

func (*DeleteUserGatewayTimeout) GetPayload

type DeleteUserInternalServerError

type DeleteUserInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteUserInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewDeleteUserInternalServerError

func NewDeleteUserInternalServerError() *DeleteUserInternalServerError

NewDeleteUserInternalServerError creates a DeleteUserInternalServerError with default headers values

func (*DeleteUserInternalServerError) Error

func (*DeleteUserInternalServerError) GetPayload

type DeleteUserNotFound

type DeleteUserNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteUserNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewDeleteUserNotFound

func NewDeleteUserNotFound() *DeleteUserNotFound

NewDeleteUserNotFound creates a DeleteUserNotFound with default headers values

func (*DeleteUserNotFound) Error

func (o *DeleteUserNotFound) Error() string

func (*DeleteUserNotFound) GetPayload

type DeleteUserOK

type DeleteUserOK struct {
	Payload *swagger_models.CrudResponse
}
DeleteUserOK describes a response with status code 200, with default header values.

A successful response.

func NewDeleteUserOK

func NewDeleteUserOK() *DeleteUserOK

NewDeleteUserOK creates a DeleteUserOK with default headers values

func (*DeleteUserOK) Error

func (o *DeleteUserOK) Error() string

func (*DeleteUserOK) GetPayload

func (o *DeleteUserOK) GetPayload() *swagger_models.CrudResponse

type DeleteUserParams

type DeleteUserParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

DeleteUserParams contains all the parameters to send to the API endpoint

for the delete user operation.

Typically these are written to a http.Request.

func NewDeleteUserParams

func NewDeleteUserParams() *DeleteUserParams

NewDeleteUserParams creates a new DeleteUserParams 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 NewDeleteUserParamsWithContext

func NewDeleteUserParamsWithContext(ctx context.Context) *DeleteUserParams

NewDeleteUserParamsWithContext creates a new DeleteUserParams object with the ability to set a context for a request.

func NewDeleteUserParamsWithHTTPClient

func NewDeleteUserParamsWithHTTPClient(client *http.Client) *DeleteUserParams

NewDeleteUserParamsWithHTTPClient creates a new DeleteUserParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteUserParamsWithTimeout

func NewDeleteUserParamsWithTimeout(timeout time.Duration) *DeleteUserParams

NewDeleteUserParamsWithTimeout creates a new DeleteUserParams object with the ability to set a timeout on a request.

func (*DeleteUserParams) SetContext

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

SetContext adds the context to the delete user params

func (*DeleteUserParams) SetDefaults

func (o *DeleteUserParams) SetDefaults()

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

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

func (*DeleteUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete user params

func (*DeleteUserParams) SetID

func (o *DeleteUserParams) SetID(id string)

SetID adds the id to the delete user params

func (*DeleteUserParams) SetTimeout

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

SetTimeout adds the timeout to the delete user params

func (*DeleteUserParams) SetXRequestID

func (o *DeleteUserParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the delete user params

func (*DeleteUserParams) WithContext

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

WithContext adds the context to the delete user params

func (*DeleteUserParams) WithDefaults

func (o *DeleteUserParams) WithDefaults() *DeleteUserParams

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

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

func (*DeleteUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete user params

func (*DeleteUserParams) WithID

func (o *DeleteUserParams) WithID(id string) *DeleteUserParams

WithID adds the id to the delete user params

func (*DeleteUserParams) WithTimeout

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

WithTimeout adds the timeout to the delete user params

func (*DeleteUserParams) WithXRequestID

func (o *DeleteUserParams) WithXRequestID(xRequestID *string) *DeleteUserParams

WithXRequestID adds the xRequestID to the delete user params

func (*DeleteUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteUserReader

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

DeleteUserReader is a Reader for the DeleteUser structure.

func (*DeleteUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteUserUnauthorized

type DeleteUserUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
DeleteUserUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewDeleteUserUnauthorized

func NewDeleteUserUnauthorized() *DeleteUserUnauthorized

NewDeleteUserUnauthorized creates a DeleteUserUnauthorized with default headers values

func (*DeleteUserUnauthorized) Error

func (o *DeleteUserUnauthorized) Error() string

func (*DeleteUserUnauthorized) GetPayload

type GetAuthProfileByNameForbidden

type GetAuthProfileByNameForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileByNameForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetAuthProfileByNameForbidden

func NewGetAuthProfileByNameForbidden() *GetAuthProfileByNameForbidden

NewGetAuthProfileByNameForbidden creates a GetAuthProfileByNameForbidden with default headers values

func (*GetAuthProfileByNameForbidden) Error

func (*GetAuthProfileByNameForbidden) GetPayload

type GetAuthProfileByNameGatewayTimeout

type GetAuthProfileByNameGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileByNameGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetAuthProfileByNameGatewayTimeout

func NewGetAuthProfileByNameGatewayTimeout() *GetAuthProfileByNameGatewayTimeout

NewGetAuthProfileByNameGatewayTimeout creates a GetAuthProfileByNameGatewayTimeout with default headers values

func (*GetAuthProfileByNameGatewayTimeout) Error

func (*GetAuthProfileByNameGatewayTimeout) GetPayload

type GetAuthProfileByNameInternalServerError

type GetAuthProfileByNameInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileByNameInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetAuthProfileByNameInternalServerError

func NewGetAuthProfileByNameInternalServerError() *GetAuthProfileByNameInternalServerError

NewGetAuthProfileByNameInternalServerError creates a GetAuthProfileByNameInternalServerError with default headers values

func (*GetAuthProfileByNameInternalServerError) Error

func (*GetAuthProfileByNameInternalServerError) GetPayload

type GetAuthProfileByNameNotFound

type GetAuthProfileByNameNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileByNameNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetAuthProfileByNameNotFound

func NewGetAuthProfileByNameNotFound() *GetAuthProfileByNameNotFound

NewGetAuthProfileByNameNotFound creates a GetAuthProfileByNameNotFound with default headers values

func (*GetAuthProfileByNameNotFound) Error

func (*GetAuthProfileByNameNotFound) GetPayload

type GetAuthProfileByNameOK

type GetAuthProfileByNameOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetAuthProfileByNameOK describes a response with status code 200, with default header values.

A successful response.

func NewGetAuthProfileByNameOK

func NewGetAuthProfileByNameOK() *GetAuthProfileByNameOK

NewGetAuthProfileByNameOK creates a GetAuthProfileByNameOK with default headers values

func (*GetAuthProfileByNameOK) Error

func (o *GetAuthProfileByNameOK) Error() string

func (*GetAuthProfileByNameOK) GetPayload

type GetAuthProfileByNameParams

type GetAuthProfileByNameParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Name.
	Name string

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

GetAuthProfileByNameParams contains all the parameters to send to the API endpoint

for the get auth profile by name operation.

Typically these are written to a http.Request.

func NewGetAuthProfileByNameParams

func NewGetAuthProfileByNameParams() *GetAuthProfileByNameParams

NewGetAuthProfileByNameParams creates a new GetAuthProfileByNameParams 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 NewGetAuthProfileByNameParamsWithContext

func NewGetAuthProfileByNameParamsWithContext(ctx context.Context) *GetAuthProfileByNameParams

NewGetAuthProfileByNameParamsWithContext creates a new GetAuthProfileByNameParams object with the ability to set a context for a request.

func NewGetAuthProfileByNameParamsWithHTTPClient

func NewGetAuthProfileByNameParamsWithHTTPClient(client *http.Client) *GetAuthProfileByNameParams

NewGetAuthProfileByNameParamsWithHTTPClient creates a new GetAuthProfileByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetAuthProfileByNameParamsWithTimeout

func NewGetAuthProfileByNameParamsWithTimeout(timeout time.Duration) *GetAuthProfileByNameParams

NewGetAuthProfileByNameParamsWithTimeout creates a new GetAuthProfileByNameParams object with the ability to set a timeout on a request.

func (*GetAuthProfileByNameParams) SetContext

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

SetContext adds the context to the get auth profile by name params

func (*GetAuthProfileByNameParams) SetDefaults

func (o *GetAuthProfileByNameParams) SetDefaults()

SetDefaults hydrates default values in the get auth profile by name params (not the query body).

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

func (*GetAuthProfileByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get auth profile by name params

func (*GetAuthProfileByNameParams) SetName

func (o *GetAuthProfileByNameParams) SetName(name string)

SetName adds the name to the get auth profile by name params

func (*GetAuthProfileByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get auth profile by name params

func (*GetAuthProfileByNameParams) SetXRequestID

func (o *GetAuthProfileByNameParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get auth profile by name params

func (*GetAuthProfileByNameParams) WithContext

WithContext adds the context to the get auth profile by name params

func (*GetAuthProfileByNameParams) WithDefaults

WithDefaults hydrates default values in the get auth profile by name params (not the query body).

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

func (*GetAuthProfileByNameParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get auth profile by name params

func (*GetAuthProfileByNameParams) WithName

WithName adds the name to the get auth profile by name params

func (*GetAuthProfileByNameParams) WithTimeout

WithTimeout adds the timeout to the get auth profile by name params

func (*GetAuthProfileByNameParams) WithXRequestID

func (o *GetAuthProfileByNameParams) WithXRequestID(xRequestID *string) *GetAuthProfileByNameParams

WithXRequestID adds the xRequestID to the get auth profile by name params

func (*GetAuthProfileByNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAuthProfileByNameReader

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

GetAuthProfileByNameReader is a Reader for the GetAuthProfileByName structure.

func (*GetAuthProfileByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAuthProfileByNameUnauthorized

type GetAuthProfileByNameUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileByNameUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetAuthProfileByNameUnauthorized

func NewGetAuthProfileByNameUnauthorized() *GetAuthProfileByNameUnauthorized

NewGetAuthProfileByNameUnauthorized creates a GetAuthProfileByNameUnauthorized with default headers values

func (*GetAuthProfileByNameUnauthorized) Error

func (*GetAuthProfileByNameUnauthorized) GetPayload

type GetAuthProfileForbidden

type GetAuthProfileForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetAuthProfileForbidden

func NewGetAuthProfileForbidden() *GetAuthProfileForbidden

NewGetAuthProfileForbidden creates a GetAuthProfileForbidden with default headers values

func (*GetAuthProfileForbidden) Error

func (o *GetAuthProfileForbidden) Error() string

func (*GetAuthProfileForbidden) GetPayload

type GetAuthProfileGatewayTimeout

type GetAuthProfileGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetAuthProfileGatewayTimeout

func NewGetAuthProfileGatewayTimeout() *GetAuthProfileGatewayTimeout

NewGetAuthProfileGatewayTimeout creates a GetAuthProfileGatewayTimeout with default headers values

func (*GetAuthProfileGatewayTimeout) Error

func (*GetAuthProfileGatewayTimeout) GetPayload

type GetAuthProfileInternalServerError

type GetAuthProfileInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetAuthProfileInternalServerError

func NewGetAuthProfileInternalServerError() *GetAuthProfileInternalServerError

NewGetAuthProfileInternalServerError creates a GetAuthProfileInternalServerError with default headers values

func (*GetAuthProfileInternalServerError) Error

func (*GetAuthProfileInternalServerError) GetPayload

type GetAuthProfileNotFound

type GetAuthProfileNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetAuthProfileNotFound

func NewGetAuthProfileNotFound() *GetAuthProfileNotFound

NewGetAuthProfileNotFound creates a GetAuthProfileNotFound with default headers values

func (*GetAuthProfileNotFound) Error

func (o *GetAuthProfileNotFound) Error() string

func (*GetAuthProfileNotFound) GetPayload

type GetAuthProfileOK

type GetAuthProfileOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetAuthProfileOK describes a response with status code 200, with default header values.

A successful response.

func NewGetAuthProfileOK

func NewGetAuthProfileOK() *GetAuthProfileOK

NewGetAuthProfileOK creates a GetAuthProfileOK with default headers values

func (*GetAuthProfileOK) Error

func (o *GetAuthProfileOK) Error() string

func (*GetAuthProfileOK) GetPayload

type GetAuthProfileParams

type GetAuthProfileParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

GetAuthProfileParams contains all the parameters to send to the API endpoint

for the get auth profile operation.

Typically these are written to a http.Request.

func NewGetAuthProfileParams

func NewGetAuthProfileParams() *GetAuthProfileParams

NewGetAuthProfileParams creates a new GetAuthProfileParams 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 NewGetAuthProfileParamsWithContext

func NewGetAuthProfileParamsWithContext(ctx context.Context) *GetAuthProfileParams

NewGetAuthProfileParamsWithContext creates a new GetAuthProfileParams object with the ability to set a context for a request.

func NewGetAuthProfileParamsWithHTTPClient

func NewGetAuthProfileParamsWithHTTPClient(client *http.Client) *GetAuthProfileParams

NewGetAuthProfileParamsWithHTTPClient creates a new GetAuthProfileParams object with the ability to set a custom HTTPClient for a request.

func NewGetAuthProfileParamsWithTimeout

func NewGetAuthProfileParamsWithTimeout(timeout time.Duration) *GetAuthProfileParams

NewGetAuthProfileParamsWithTimeout creates a new GetAuthProfileParams object with the ability to set a timeout on a request.

func (*GetAuthProfileParams) SetContext

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

SetContext adds the context to the get auth profile params

func (*GetAuthProfileParams) SetDefaults

func (o *GetAuthProfileParams) SetDefaults()

SetDefaults hydrates default values in the get auth profile params (not the query body).

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

func (*GetAuthProfileParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get auth profile params

func (*GetAuthProfileParams) SetID

func (o *GetAuthProfileParams) SetID(id string)

SetID adds the id to the get auth profile params

func (*GetAuthProfileParams) SetTimeout

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

SetTimeout adds the timeout to the get auth profile params

func (*GetAuthProfileParams) SetXRequestID

func (o *GetAuthProfileParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get auth profile params

func (*GetAuthProfileParams) WithContext

WithContext adds the context to the get auth profile params

func (*GetAuthProfileParams) WithDefaults

func (o *GetAuthProfileParams) WithDefaults() *GetAuthProfileParams

WithDefaults hydrates default values in the get auth profile params (not the query body).

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

func (*GetAuthProfileParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get auth profile params

func (*GetAuthProfileParams) WithID

WithID adds the id to the get auth profile params

func (*GetAuthProfileParams) WithTimeout

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

WithTimeout adds the timeout to the get auth profile params

func (*GetAuthProfileParams) WithXRequestID

func (o *GetAuthProfileParams) WithXRequestID(xRequestID *string) *GetAuthProfileParams

WithXRequestID adds the xRequestID to the get auth profile params

func (*GetAuthProfileParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAuthProfileReader

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

GetAuthProfileReader is a Reader for the GetAuthProfile structure.

func (*GetAuthProfileReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAuthProfileUnauthorized

type GetAuthProfileUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetAuthProfileUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetAuthProfileUnauthorized

func NewGetAuthProfileUnauthorized() *GetAuthProfileUnauthorized

NewGetAuthProfileUnauthorized creates a GetAuthProfileUnauthorized with default headers values

func (*GetAuthProfileUnauthorized) Error

func (*GetAuthProfileUnauthorized) GetPayload

type GetEnterpriseByNameForbidden

type GetEnterpriseByNameForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseByNameForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetEnterpriseByNameForbidden

func NewGetEnterpriseByNameForbidden() *GetEnterpriseByNameForbidden

NewGetEnterpriseByNameForbidden creates a GetEnterpriseByNameForbidden with default headers values

func (*GetEnterpriseByNameForbidden) Error

func (*GetEnterpriseByNameForbidden) GetPayload

type GetEnterpriseByNameGatewayTimeout

type GetEnterpriseByNameGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseByNameGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetEnterpriseByNameGatewayTimeout

func NewGetEnterpriseByNameGatewayTimeout() *GetEnterpriseByNameGatewayTimeout

NewGetEnterpriseByNameGatewayTimeout creates a GetEnterpriseByNameGatewayTimeout with default headers values

func (*GetEnterpriseByNameGatewayTimeout) Error

func (*GetEnterpriseByNameGatewayTimeout) GetPayload

type GetEnterpriseByNameInternalServerError

type GetEnterpriseByNameInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseByNameInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetEnterpriseByNameInternalServerError

func NewGetEnterpriseByNameInternalServerError() *GetEnterpriseByNameInternalServerError

NewGetEnterpriseByNameInternalServerError creates a GetEnterpriseByNameInternalServerError with default headers values

func (*GetEnterpriseByNameInternalServerError) Error

func (*GetEnterpriseByNameInternalServerError) GetPayload

type GetEnterpriseByNameNotFound

type GetEnterpriseByNameNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseByNameNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetEnterpriseByNameNotFound

func NewGetEnterpriseByNameNotFound() *GetEnterpriseByNameNotFound

NewGetEnterpriseByNameNotFound creates a GetEnterpriseByNameNotFound with default headers values

func (*GetEnterpriseByNameNotFound) Error

func (*GetEnterpriseByNameNotFound) GetPayload

type GetEnterpriseByNameOK

type GetEnterpriseByNameOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetEnterpriseByNameOK describes a response with status code 200, with default header values.

A successful response.

func NewGetEnterpriseByNameOK

func NewGetEnterpriseByNameOK() *GetEnterpriseByNameOK

NewGetEnterpriseByNameOK creates a GetEnterpriseByNameOK with default headers values

func (*GetEnterpriseByNameOK) Error

func (o *GetEnterpriseByNameOK) Error() string

func (*GetEnterpriseByNameOK) GetPayload

type GetEnterpriseByNameParams

type GetEnterpriseByNameParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Name.
	Name string

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

GetEnterpriseByNameParams contains all the parameters to send to the API endpoint

for the get enterprise by name operation.

Typically these are written to a http.Request.

func NewGetEnterpriseByNameParams

func NewGetEnterpriseByNameParams() *GetEnterpriseByNameParams

NewGetEnterpriseByNameParams creates a new GetEnterpriseByNameParams 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 NewGetEnterpriseByNameParamsWithContext

func NewGetEnterpriseByNameParamsWithContext(ctx context.Context) *GetEnterpriseByNameParams

NewGetEnterpriseByNameParamsWithContext creates a new GetEnterpriseByNameParams object with the ability to set a context for a request.

func NewGetEnterpriseByNameParamsWithHTTPClient

func NewGetEnterpriseByNameParamsWithHTTPClient(client *http.Client) *GetEnterpriseByNameParams

NewGetEnterpriseByNameParamsWithHTTPClient creates a new GetEnterpriseByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetEnterpriseByNameParamsWithTimeout

func NewGetEnterpriseByNameParamsWithTimeout(timeout time.Duration) *GetEnterpriseByNameParams

NewGetEnterpriseByNameParamsWithTimeout creates a new GetEnterpriseByNameParams object with the ability to set a timeout on a request.

func (*GetEnterpriseByNameParams) SetContext

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

SetContext adds the context to the get enterprise by name params

func (*GetEnterpriseByNameParams) SetDefaults

func (o *GetEnterpriseByNameParams) SetDefaults()

SetDefaults hydrates default values in the get enterprise by name params (not the query body).

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

func (*GetEnterpriseByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get enterprise by name params

func (*GetEnterpriseByNameParams) SetName

func (o *GetEnterpriseByNameParams) SetName(name string)

SetName adds the name to the get enterprise by name params

func (*GetEnterpriseByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get enterprise by name params

func (*GetEnterpriseByNameParams) SetXRequestID

func (o *GetEnterpriseByNameParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get enterprise by name params

func (*GetEnterpriseByNameParams) WithContext

WithContext adds the context to the get enterprise by name params

func (*GetEnterpriseByNameParams) WithDefaults

WithDefaults hydrates default values in the get enterprise by name params (not the query body).

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

func (*GetEnterpriseByNameParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get enterprise by name params

func (*GetEnterpriseByNameParams) WithName

WithName adds the name to the get enterprise by name params

func (*GetEnterpriseByNameParams) WithTimeout

WithTimeout adds the timeout to the get enterprise by name params

func (*GetEnterpriseByNameParams) WithXRequestID

func (o *GetEnterpriseByNameParams) WithXRequestID(xRequestID *string) *GetEnterpriseByNameParams

WithXRequestID adds the xRequestID to the get enterprise by name params

func (*GetEnterpriseByNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEnterpriseByNameReader

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

GetEnterpriseByNameReader is a Reader for the GetEnterpriseByName structure.

func (*GetEnterpriseByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEnterpriseByNameUnauthorized

type GetEnterpriseByNameUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseByNameUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetEnterpriseByNameUnauthorized

func NewGetEnterpriseByNameUnauthorized() *GetEnterpriseByNameUnauthorized

NewGetEnterpriseByNameUnauthorized creates a GetEnterpriseByNameUnauthorized with default headers values

func (*GetEnterpriseByNameUnauthorized) Error

func (*GetEnterpriseByNameUnauthorized) GetPayload

type GetEnterpriseForbidden

type GetEnterpriseForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetEnterpriseForbidden

func NewGetEnterpriseForbidden() *GetEnterpriseForbidden

NewGetEnterpriseForbidden creates a GetEnterpriseForbidden with default headers values

func (*GetEnterpriseForbidden) Error

func (o *GetEnterpriseForbidden) Error() string

func (*GetEnterpriseForbidden) GetPayload

type GetEnterpriseGatewayTimeout

type GetEnterpriseGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetEnterpriseGatewayTimeout

func NewGetEnterpriseGatewayTimeout() *GetEnterpriseGatewayTimeout

NewGetEnterpriseGatewayTimeout creates a GetEnterpriseGatewayTimeout with default headers values

func (*GetEnterpriseGatewayTimeout) Error

func (*GetEnterpriseGatewayTimeout) GetPayload

type GetEnterpriseInternalServerError

type GetEnterpriseInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetEnterpriseInternalServerError

func NewGetEnterpriseInternalServerError() *GetEnterpriseInternalServerError

NewGetEnterpriseInternalServerError creates a GetEnterpriseInternalServerError with default headers values

func (*GetEnterpriseInternalServerError) Error

func (*GetEnterpriseInternalServerError) GetPayload

type GetEnterpriseNotFound

type GetEnterpriseNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetEnterpriseNotFound

func NewGetEnterpriseNotFound() *GetEnterpriseNotFound

NewGetEnterpriseNotFound creates a GetEnterpriseNotFound with default headers values

func (*GetEnterpriseNotFound) Error

func (o *GetEnterpriseNotFound) Error() string

func (*GetEnterpriseNotFound) GetPayload

type GetEnterpriseOK

type GetEnterpriseOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetEnterpriseOK describes a response with status code 200, with default header values.

A successful response.

func NewGetEnterpriseOK

func NewGetEnterpriseOK() *GetEnterpriseOK

NewGetEnterpriseOK creates a GetEnterpriseOK with default headers values

func (*GetEnterpriseOK) Error

func (o *GetEnterpriseOK) Error() string

func (*GetEnterpriseOK) GetPayload

type GetEnterpriseParams

type GetEnterpriseParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

GetEnterpriseParams contains all the parameters to send to the API endpoint

for the get enterprise operation.

Typically these are written to a http.Request.

func NewGetEnterpriseParams

func NewGetEnterpriseParams() *GetEnterpriseParams

NewGetEnterpriseParams creates a new GetEnterpriseParams 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 NewGetEnterpriseParamsWithContext

func NewGetEnterpriseParamsWithContext(ctx context.Context) *GetEnterpriseParams

NewGetEnterpriseParamsWithContext creates a new GetEnterpriseParams object with the ability to set a context for a request.

func NewGetEnterpriseParamsWithHTTPClient

func NewGetEnterpriseParamsWithHTTPClient(client *http.Client) *GetEnterpriseParams

NewGetEnterpriseParamsWithHTTPClient creates a new GetEnterpriseParams object with the ability to set a custom HTTPClient for a request.

func NewGetEnterpriseParamsWithTimeout

func NewGetEnterpriseParamsWithTimeout(timeout time.Duration) *GetEnterpriseParams

NewGetEnterpriseParamsWithTimeout creates a new GetEnterpriseParams object with the ability to set a timeout on a request.

func (*GetEnterpriseParams) SetContext

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

SetContext adds the context to the get enterprise params

func (*GetEnterpriseParams) SetDefaults

func (o *GetEnterpriseParams) SetDefaults()

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

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

func (*GetEnterpriseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get enterprise params

func (*GetEnterpriseParams) SetID

func (o *GetEnterpriseParams) SetID(id string)

SetID adds the id to the get enterprise params

func (*GetEnterpriseParams) SetTimeout

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

SetTimeout adds the timeout to the get enterprise params

func (*GetEnterpriseParams) SetXRequestID

func (o *GetEnterpriseParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get enterprise params

func (*GetEnterpriseParams) WithContext

WithContext adds the context to the get enterprise params

func (*GetEnterpriseParams) WithDefaults

func (o *GetEnterpriseParams) WithDefaults() *GetEnterpriseParams

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

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

func (*GetEnterpriseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get enterprise params

func (*GetEnterpriseParams) WithID

WithID adds the id to the get enterprise params

func (*GetEnterpriseParams) WithTimeout

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

WithTimeout adds the timeout to the get enterprise params

func (*GetEnterpriseParams) WithXRequestID

func (o *GetEnterpriseParams) WithXRequestID(xRequestID *string) *GetEnterpriseParams

WithXRequestID adds the xRequestID to the get enterprise params

func (*GetEnterpriseParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetEnterpriseReader

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

GetEnterpriseReader is a Reader for the GetEnterprise structure.

func (*GetEnterpriseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEnterpriseSelfForbidden

type GetEnterpriseSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetEnterpriseSelfForbidden

func NewGetEnterpriseSelfForbidden() *GetEnterpriseSelfForbidden

NewGetEnterpriseSelfForbidden creates a GetEnterpriseSelfForbidden with default headers values

func (*GetEnterpriseSelfForbidden) Error

func (*GetEnterpriseSelfForbidden) GetPayload

type GetEnterpriseSelfGatewayTimeout

type GetEnterpriseSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetEnterpriseSelfGatewayTimeout

func NewGetEnterpriseSelfGatewayTimeout() *GetEnterpriseSelfGatewayTimeout

NewGetEnterpriseSelfGatewayTimeout creates a GetEnterpriseSelfGatewayTimeout with default headers values

func (*GetEnterpriseSelfGatewayTimeout) Error

func (*GetEnterpriseSelfGatewayTimeout) GetPayload

type GetEnterpriseSelfInternalServerError

type GetEnterpriseSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetEnterpriseSelfInternalServerError

func NewGetEnterpriseSelfInternalServerError() *GetEnterpriseSelfInternalServerError

NewGetEnterpriseSelfInternalServerError creates a GetEnterpriseSelfInternalServerError with default headers values

func (*GetEnterpriseSelfInternalServerError) Error

func (*GetEnterpriseSelfInternalServerError) GetPayload

type GetEnterpriseSelfNotFound

type GetEnterpriseSelfNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseSelfNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetEnterpriseSelfNotFound

func NewGetEnterpriseSelfNotFound() *GetEnterpriseSelfNotFound

NewGetEnterpriseSelfNotFound creates a GetEnterpriseSelfNotFound with default headers values

func (*GetEnterpriseSelfNotFound) Error

func (o *GetEnterpriseSelfNotFound) Error() string

func (*GetEnterpriseSelfNotFound) GetPayload

type GetEnterpriseSelfOK

type GetEnterpriseSelfOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetEnterpriseSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewGetEnterpriseSelfOK

func NewGetEnterpriseSelfOK() *GetEnterpriseSelfOK

NewGetEnterpriseSelfOK creates a GetEnterpriseSelfOK with default headers values

func (*GetEnterpriseSelfOK) Error

func (o *GetEnterpriseSelfOK) Error() string

func (*GetEnterpriseSelfOK) GetPayload

type GetEnterpriseSelfParams

type GetEnterpriseSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

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

GetEnterpriseSelfParams contains all the parameters to send to the API endpoint

for the get enterprise self operation.

Typically these are written to a http.Request.

func NewGetEnterpriseSelfParams

func NewGetEnterpriseSelfParams() *GetEnterpriseSelfParams

NewGetEnterpriseSelfParams creates a new GetEnterpriseSelfParams 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 NewGetEnterpriseSelfParamsWithContext

func NewGetEnterpriseSelfParamsWithContext(ctx context.Context) *GetEnterpriseSelfParams

NewGetEnterpriseSelfParamsWithContext creates a new GetEnterpriseSelfParams object with the ability to set a context for a request.

func NewGetEnterpriseSelfParamsWithHTTPClient

func NewGetEnterpriseSelfParamsWithHTTPClient(client *http.Client) *GetEnterpriseSelfParams

NewGetEnterpriseSelfParamsWithHTTPClient creates a new GetEnterpriseSelfParams object with the ability to set a custom HTTPClient for a request.

func NewGetEnterpriseSelfParamsWithTimeout

func NewGetEnterpriseSelfParamsWithTimeout(timeout time.Duration) *GetEnterpriseSelfParams

NewGetEnterpriseSelfParamsWithTimeout creates a new GetEnterpriseSelfParams object with the ability to set a timeout on a request.

func (*GetEnterpriseSelfParams) SetContext

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

SetContext adds the context to the get enterprise self params

func (*GetEnterpriseSelfParams) SetDefaults

func (o *GetEnterpriseSelfParams) SetDefaults()

SetDefaults hydrates default values in the get enterprise self params (not the query body).

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

func (*GetEnterpriseSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get enterprise self params

func (*GetEnterpriseSelfParams) SetTimeout

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

SetTimeout adds the timeout to the get enterprise self params

func (*GetEnterpriseSelfParams) SetXRequestID

func (o *GetEnterpriseSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get enterprise self params

func (*GetEnterpriseSelfParams) WithContext

WithContext adds the context to the get enterprise self params

func (*GetEnterpriseSelfParams) WithDefaults

WithDefaults hydrates default values in the get enterprise self params (not the query body).

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

func (*GetEnterpriseSelfParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get enterprise self params

func (*GetEnterpriseSelfParams) WithTimeout

WithTimeout adds the timeout to the get enterprise self params

func (*GetEnterpriseSelfParams) WithXRequestID

func (o *GetEnterpriseSelfParams) WithXRequestID(xRequestID *string) *GetEnterpriseSelfParams

WithXRequestID adds the xRequestID to the get enterprise self params

func (*GetEnterpriseSelfParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEnterpriseSelfReader

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

GetEnterpriseSelfReader is a Reader for the GetEnterpriseSelf structure.

func (*GetEnterpriseSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEnterpriseSelfUnauthorized

type GetEnterpriseSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetEnterpriseSelfUnauthorized

func NewGetEnterpriseSelfUnauthorized() *GetEnterpriseSelfUnauthorized

NewGetEnterpriseSelfUnauthorized creates a GetEnterpriseSelfUnauthorized with default headers values

func (*GetEnterpriseSelfUnauthorized) Error

func (*GetEnterpriseSelfUnauthorized) GetPayload

type GetEnterpriseUnauthorized

type GetEnterpriseUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetEnterpriseUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetEnterpriseUnauthorized

func NewGetEnterpriseUnauthorized() *GetEnterpriseUnauthorized

NewGetEnterpriseUnauthorized creates a GetEnterpriseUnauthorized with default headers values

func (*GetEnterpriseUnauthorized) Error

func (o *GetEnterpriseUnauthorized) Error() string

func (*GetEnterpriseUnauthorized) GetPayload

type GetRealmByNameForbidden

type GetRealmByNameForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmByNameForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetRealmByNameForbidden

func NewGetRealmByNameForbidden() *GetRealmByNameForbidden

NewGetRealmByNameForbidden creates a GetRealmByNameForbidden with default headers values

func (*GetRealmByNameForbidden) Error

func (o *GetRealmByNameForbidden) Error() string

func (*GetRealmByNameForbidden) GetPayload

type GetRealmByNameGatewayTimeout

type GetRealmByNameGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmByNameGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetRealmByNameGatewayTimeout

func NewGetRealmByNameGatewayTimeout() *GetRealmByNameGatewayTimeout

NewGetRealmByNameGatewayTimeout creates a GetRealmByNameGatewayTimeout with default headers values

func (*GetRealmByNameGatewayTimeout) Error

func (*GetRealmByNameGatewayTimeout) GetPayload

type GetRealmByNameInternalServerError

type GetRealmByNameInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmByNameInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetRealmByNameInternalServerError

func NewGetRealmByNameInternalServerError() *GetRealmByNameInternalServerError

NewGetRealmByNameInternalServerError creates a GetRealmByNameInternalServerError with default headers values

func (*GetRealmByNameInternalServerError) Error

func (*GetRealmByNameInternalServerError) GetPayload

type GetRealmByNameNotFound

type GetRealmByNameNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmByNameNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetRealmByNameNotFound

func NewGetRealmByNameNotFound() *GetRealmByNameNotFound

NewGetRealmByNameNotFound creates a GetRealmByNameNotFound with default headers values

func (*GetRealmByNameNotFound) Error

func (o *GetRealmByNameNotFound) Error() string

func (*GetRealmByNameNotFound) GetPayload

type GetRealmByNameOK

type GetRealmByNameOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetRealmByNameOK describes a response with status code 200, with default header values.

A successful response.

func NewGetRealmByNameOK

func NewGetRealmByNameOK() *GetRealmByNameOK

NewGetRealmByNameOK creates a GetRealmByNameOK with default headers values

func (*GetRealmByNameOK) Error

func (o *GetRealmByNameOK) Error() string

func (*GetRealmByNameOK) GetPayload

type GetRealmByNameParams

type GetRealmByNameParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Name.
	Name string

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

GetRealmByNameParams contains all the parameters to send to the API endpoint

for the get realm by name operation.

Typically these are written to a http.Request.

func NewGetRealmByNameParams

func NewGetRealmByNameParams() *GetRealmByNameParams

NewGetRealmByNameParams creates a new GetRealmByNameParams 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 NewGetRealmByNameParamsWithContext

func NewGetRealmByNameParamsWithContext(ctx context.Context) *GetRealmByNameParams

NewGetRealmByNameParamsWithContext creates a new GetRealmByNameParams object with the ability to set a context for a request.

func NewGetRealmByNameParamsWithHTTPClient

func NewGetRealmByNameParamsWithHTTPClient(client *http.Client) *GetRealmByNameParams

NewGetRealmByNameParamsWithHTTPClient creates a new GetRealmByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetRealmByNameParamsWithTimeout

func NewGetRealmByNameParamsWithTimeout(timeout time.Duration) *GetRealmByNameParams

NewGetRealmByNameParamsWithTimeout creates a new GetRealmByNameParams object with the ability to set a timeout on a request.

func (*GetRealmByNameParams) SetContext

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

SetContext adds the context to the get realm by name params

func (*GetRealmByNameParams) SetDefaults

func (o *GetRealmByNameParams) SetDefaults()

SetDefaults hydrates default values in the get realm by name params (not the query body).

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

func (*GetRealmByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get realm by name params

func (*GetRealmByNameParams) SetName

func (o *GetRealmByNameParams) SetName(name string)

SetName adds the name to the get realm by name params

func (*GetRealmByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get realm by name params

func (*GetRealmByNameParams) SetXRequestID

func (o *GetRealmByNameParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get realm by name params

func (*GetRealmByNameParams) WithContext

WithContext adds the context to the get realm by name params

func (*GetRealmByNameParams) WithDefaults

func (o *GetRealmByNameParams) WithDefaults() *GetRealmByNameParams

WithDefaults hydrates default values in the get realm by name params (not the query body).

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

func (*GetRealmByNameParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get realm by name params

func (*GetRealmByNameParams) WithName

WithName adds the name to the get realm by name params

func (*GetRealmByNameParams) WithTimeout

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

WithTimeout adds the timeout to the get realm by name params

func (*GetRealmByNameParams) WithXRequestID

func (o *GetRealmByNameParams) WithXRequestID(xRequestID *string) *GetRealmByNameParams

WithXRequestID adds the xRequestID to the get realm by name params

func (*GetRealmByNameParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetRealmByNameReader

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

GetRealmByNameReader is a Reader for the GetRealmByName structure.

func (*GetRealmByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRealmByNameUnauthorized

type GetRealmByNameUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmByNameUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetRealmByNameUnauthorized

func NewGetRealmByNameUnauthorized() *GetRealmByNameUnauthorized

NewGetRealmByNameUnauthorized creates a GetRealmByNameUnauthorized with default headers values

func (*GetRealmByNameUnauthorized) Error

func (*GetRealmByNameUnauthorized) GetPayload

type GetRealmForbidden

type GetRealmForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetRealmForbidden

func NewGetRealmForbidden() *GetRealmForbidden

NewGetRealmForbidden creates a GetRealmForbidden with default headers values

func (*GetRealmForbidden) Error

func (o *GetRealmForbidden) Error() string

func (*GetRealmForbidden) GetPayload

type GetRealmGatewayTimeout

type GetRealmGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetRealmGatewayTimeout

func NewGetRealmGatewayTimeout() *GetRealmGatewayTimeout

NewGetRealmGatewayTimeout creates a GetRealmGatewayTimeout with default headers values

func (*GetRealmGatewayTimeout) Error

func (o *GetRealmGatewayTimeout) Error() string

func (*GetRealmGatewayTimeout) GetPayload

type GetRealmInternalServerError

type GetRealmInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetRealmInternalServerError

func NewGetRealmInternalServerError() *GetRealmInternalServerError

NewGetRealmInternalServerError creates a GetRealmInternalServerError with default headers values

func (*GetRealmInternalServerError) Error

func (*GetRealmInternalServerError) GetPayload

type GetRealmNotFound

type GetRealmNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetRealmNotFound

func NewGetRealmNotFound() *GetRealmNotFound

NewGetRealmNotFound creates a GetRealmNotFound with default headers values

func (*GetRealmNotFound) Error

func (o *GetRealmNotFound) Error() string

func (*GetRealmNotFound) GetPayload

func (o *GetRealmNotFound) GetPayload() *swagger_models.ZsrvResponse

type GetRealmOK

type GetRealmOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetRealmOK describes a response with status code 200, with default header values.

A successful response.

func NewGetRealmOK

func NewGetRealmOK() *GetRealmOK

NewGetRealmOK creates a GetRealmOK with default headers values

func (*GetRealmOK) Error

func (o *GetRealmOK) Error() string

func (*GetRealmOK) GetPayload

func (o *GetRealmOK) GetPayload() *swagger_models.CrudResponseRead

type GetRealmParams

type GetRealmParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

GetRealmParams contains all the parameters to send to the API endpoint

for the get realm operation.

Typically these are written to a http.Request.

func NewGetRealmParams

func NewGetRealmParams() *GetRealmParams

NewGetRealmParams creates a new GetRealmParams 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 NewGetRealmParamsWithContext

func NewGetRealmParamsWithContext(ctx context.Context) *GetRealmParams

NewGetRealmParamsWithContext creates a new GetRealmParams object with the ability to set a context for a request.

func NewGetRealmParamsWithHTTPClient

func NewGetRealmParamsWithHTTPClient(client *http.Client) *GetRealmParams

NewGetRealmParamsWithHTTPClient creates a new GetRealmParams object with the ability to set a custom HTTPClient for a request.

func NewGetRealmParamsWithTimeout

func NewGetRealmParamsWithTimeout(timeout time.Duration) *GetRealmParams

NewGetRealmParamsWithTimeout creates a new GetRealmParams object with the ability to set a timeout on a request.

func (*GetRealmParams) SetContext

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

SetContext adds the context to the get realm params

func (*GetRealmParams) SetDefaults

func (o *GetRealmParams) SetDefaults()

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

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

func (*GetRealmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get realm params

func (*GetRealmParams) SetID

func (o *GetRealmParams) SetID(id string)

SetID adds the id to the get realm params

func (*GetRealmParams) SetTimeout

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

SetTimeout adds the timeout to the get realm params

func (*GetRealmParams) SetXRequestID

func (o *GetRealmParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get realm params

func (*GetRealmParams) WithContext

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

WithContext adds the context to the get realm params

func (*GetRealmParams) WithDefaults

func (o *GetRealmParams) WithDefaults() *GetRealmParams

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

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

func (*GetRealmParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get realm params

func (*GetRealmParams) WithID

func (o *GetRealmParams) WithID(id string) *GetRealmParams

WithID adds the id to the get realm params

func (*GetRealmParams) WithTimeout

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

WithTimeout adds the timeout to the get realm params

func (*GetRealmParams) WithXRequestID

func (o *GetRealmParams) WithXRequestID(xRequestID *string) *GetRealmParams

WithXRequestID adds the xRequestID to the get realm params

func (*GetRealmParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetRealmReader

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

GetRealmReader is a Reader for the GetRealm structure.

func (*GetRealmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRealmUnauthorized

type GetRealmUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetRealmUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetRealmUnauthorized

func NewGetRealmUnauthorized() *GetRealmUnauthorized

NewGetRealmUnauthorized creates a GetRealmUnauthorized with default headers values

func (*GetRealmUnauthorized) Error

func (o *GetRealmUnauthorized) Error() string

func (*GetRealmUnauthorized) GetPayload

type GetRoleByNameForbidden

type GetRoleByNameForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleByNameForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetRoleByNameForbidden

func NewGetRoleByNameForbidden() *GetRoleByNameForbidden

NewGetRoleByNameForbidden creates a GetRoleByNameForbidden with default headers values

func (*GetRoleByNameForbidden) Error

func (o *GetRoleByNameForbidden) Error() string

func (*GetRoleByNameForbidden) GetPayload

type GetRoleByNameGatewayTimeout

type GetRoleByNameGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleByNameGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetRoleByNameGatewayTimeout

func NewGetRoleByNameGatewayTimeout() *GetRoleByNameGatewayTimeout

NewGetRoleByNameGatewayTimeout creates a GetRoleByNameGatewayTimeout with default headers values

func (*GetRoleByNameGatewayTimeout) Error

func (*GetRoleByNameGatewayTimeout) GetPayload

type GetRoleByNameInternalServerError

type GetRoleByNameInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleByNameInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetRoleByNameInternalServerError

func NewGetRoleByNameInternalServerError() *GetRoleByNameInternalServerError

NewGetRoleByNameInternalServerError creates a GetRoleByNameInternalServerError with default headers values

func (*GetRoleByNameInternalServerError) Error

func (*GetRoleByNameInternalServerError) GetPayload

type GetRoleByNameNotFound

type GetRoleByNameNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleByNameNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetRoleByNameNotFound

func NewGetRoleByNameNotFound() *GetRoleByNameNotFound

NewGetRoleByNameNotFound creates a GetRoleByNameNotFound with default headers values

func (*GetRoleByNameNotFound) Error

func (o *GetRoleByNameNotFound) Error() string

func (*GetRoleByNameNotFound) GetPayload

type GetRoleByNameOK

type GetRoleByNameOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetRoleByNameOK describes a response with status code 200, with default header values.

A successful response.

func NewGetRoleByNameOK

func NewGetRoleByNameOK() *GetRoleByNameOK

NewGetRoleByNameOK creates a GetRoleByNameOK with default headers values

func (*GetRoleByNameOK) Error

func (o *GetRoleByNameOK) Error() string

func (*GetRoleByNameOK) GetPayload

type GetRoleByNameParams

type GetRoleByNameParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Name.
	Name string

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

GetRoleByNameParams contains all the parameters to send to the API endpoint

for the get role by name operation.

Typically these are written to a http.Request.

func NewGetRoleByNameParams

func NewGetRoleByNameParams() *GetRoleByNameParams

NewGetRoleByNameParams creates a new GetRoleByNameParams 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 NewGetRoleByNameParamsWithContext

func NewGetRoleByNameParamsWithContext(ctx context.Context) *GetRoleByNameParams

NewGetRoleByNameParamsWithContext creates a new GetRoleByNameParams object with the ability to set a context for a request.

func NewGetRoleByNameParamsWithHTTPClient

func NewGetRoleByNameParamsWithHTTPClient(client *http.Client) *GetRoleByNameParams

NewGetRoleByNameParamsWithHTTPClient creates a new GetRoleByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetRoleByNameParamsWithTimeout

func NewGetRoleByNameParamsWithTimeout(timeout time.Duration) *GetRoleByNameParams

NewGetRoleByNameParamsWithTimeout creates a new GetRoleByNameParams object with the ability to set a timeout on a request.

func (*GetRoleByNameParams) SetContext

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

SetContext adds the context to the get role by name params

func (*GetRoleByNameParams) SetDefaults

func (o *GetRoleByNameParams) SetDefaults()

SetDefaults hydrates default values in the get role by name params (not the query body).

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

func (*GetRoleByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get role by name params

func (*GetRoleByNameParams) SetName

func (o *GetRoleByNameParams) SetName(name string)

SetName adds the name to the get role by name params

func (*GetRoleByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get role by name params

func (*GetRoleByNameParams) SetXRequestID

func (o *GetRoleByNameParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get role by name params

func (*GetRoleByNameParams) WithContext

WithContext adds the context to the get role by name params

func (*GetRoleByNameParams) WithDefaults

func (o *GetRoleByNameParams) WithDefaults() *GetRoleByNameParams

WithDefaults hydrates default values in the get role by name params (not the query body).

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

func (*GetRoleByNameParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get role by name params

func (*GetRoleByNameParams) WithName

func (o *GetRoleByNameParams) WithName(name string) *GetRoleByNameParams

WithName adds the name to the get role by name params

func (*GetRoleByNameParams) WithTimeout

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

WithTimeout adds the timeout to the get role by name params

func (*GetRoleByNameParams) WithXRequestID

func (o *GetRoleByNameParams) WithXRequestID(xRequestID *string) *GetRoleByNameParams

WithXRequestID adds the xRequestID to the get role by name params

func (*GetRoleByNameParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetRoleByNameReader

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

GetRoleByNameReader is a Reader for the GetRoleByName structure.

func (*GetRoleByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRoleByNameUnauthorized

type GetRoleByNameUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleByNameUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetRoleByNameUnauthorized

func NewGetRoleByNameUnauthorized() *GetRoleByNameUnauthorized

NewGetRoleByNameUnauthorized creates a GetRoleByNameUnauthorized with default headers values

func (*GetRoleByNameUnauthorized) Error

func (o *GetRoleByNameUnauthorized) Error() string

func (*GetRoleByNameUnauthorized) GetPayload

type GetRoleForbidden

type GetRoleForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetRoleForbidden

func NewGetRoleForbidden() *GetRoleForbidden

NewGetRoleForbidden creates a GetRoleForbidden with default headers values

func (*GetRoleForbidden) Error

func (o *GetRoleForbidden) Error() string

func (*GetRoleForbidden) GetPayload

func (o *GetRoleForbidden) GetPayload() *swagger_models.ZsrvResponse

type GetRoleGatewayTimeout

type GetRoleGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetRoleGatewayTimeout

func NewGetRoleGatewayTimeout() *GetRoleGatewayTimeout

NewGetRoleGatewayTimeout creates a GetRoleGatewayTimeout with default headers values

func (*GetRoleGatewayTimeout) Error

func (o *GetRoleGatewayTimeout) Error() string

func (*GetRoleGatewayTimeout) GetPayload

type GetRoleInternalServerError

type GetRoleInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetRoleInternalServerError

func NewGetRoleInternalServerError() *GetRoleInternalServerError

NewGetRoleInternalServerError creates a GetRoleInternalServerError with default headers values

func (*GetRoleInternalServerError) Error

func (*GetRoleInternalServerError) GetPayload

type GetRoleNotFound

type GetRoleNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetRoleNotFound

func NewGetRoleNotFound() *GetRoleNotFound

NewGetRoleNotFound creates a GetRoleNotFound with default headers values

func (*GetRoleNotFound) Error

func (o *GetRoleNotFound) Error() string

func (*GetRoleNotFound) GetPayload

func (o *GetRoleNotFound) GetPayload() *swagger_models.ZsrvResponse

type GetRoleOK

type GetRoleOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetRoleOK describes a response with status code 200, with default header values.

A successful response.

func NewGetRoleOK

func NewGetRoleOK() *GetRoleOK

NewGetRoleOK creates a GetRoleOK with default headers values

func (*GetRoleOK) Error

func (o *GetRoleOK) Error() string

func (*GetRoleOK) GetPayload

func (o *GetRoleOK) GetPayload() *swagger_models.CrudResponseRead

type GetRoleParams

type GetRoleParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

GetRoleParams contains all the parameters to send to the API endpoint

for the get role operation.

Typically these are written to a http.Request.

func NewGetRoleParams

func NewGetRoleParams() *GetRoleParams

NewGetRoleParams creates a new GetRoleParams 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 NewGetRoleParamsWithContext

func NewGetRoleParamsWithContext(ctx context.Context) *GetRoleParams

NewGetRoleParamsWithContext creates a new GetRoleParams object with the ability to set a context for a request.

func NewGetRoleParamsWithHTTPClient

func NewGetRoleParamsWithHTTPClient(client *http.Client) *GetRoleParams

NewGetRoleParamsWithHTTPClient creates a new GetRoleParams object with the ability to set a custom HTTPClient for a request.

func NewGetRoleParamsWithTimeout

func NewGetRoleParamsWithTimeout(timeout time.Duration) *GetRoleParams

NewGetRoleParamsWithTimeout creates a new GetRoleParams object with the ability to set a timeout on a request.

func (*GetRoleParams) SetContext

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

SetContext adds the context to the get role params

func (*GetRoleParams) SetDefaults

func (o *GetRoleParams) SetDefaults()

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

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

func (*GetRoleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get role params

func (*GetRoleParams) SetID

func (o *GetRoleParams) SetID(id string)

SetID adds the id to the get role params

func (*GetRoleParams) SetTimeout

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

SetTimeout adds the timeout to the get role params

func (*GetRoleParams) SetXRequestID

func (o *GetRoleParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get role params

func (*GetRoleParams) WithContext

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

WithContext adds the context to the get role params

func (*GetRoleParams) WithDefaults

func (o *GetRoleParams) WithDefaults() *GetRoleParams

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

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

func (*GetRoleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get role params

func (*GetRoleParams) WithID

func (o *GetRoleParams) WithID(id string) *GetRoleParams

WithID adds the id to the get role params

func (*GetRoleParams) WithTimeout

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

WithTimeout adds the timeout to the get role params

func (*GetRoleParams) WithXRequestID

func (o *GetRoleParams) WithXRequestID(xRequestID *string) *GetRoleParams

WithXRequestID adds the xRequestID to the get role params

func (*GetRoleParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetRoleReader

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

GetRoleReader is a Reader for the GetRole structure.

func (*GetRoleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRoleSelfForbidden

type GetRoleSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetRoleSelfForbidden

func NewGetRoleSelfForbidden() *GetRoleSelfForbidden

NewGetRoleSelfForbidden creates a GetRoleSelfForbidden with default headers values

func (*GetRoleSelfForbidden) Error

func (o *GetRoleSelfForbidden) Error() string

func (*GetRoleSelfForbidden) GetPayload

type GetRoleSelfGatewayTimeout

type GetRoleSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetRoleSelfGatewayTimeout

func NewGetRoleSelfGatewayTimeout() *GetRoleSelfGatewayTimeout

NewGetRoleSelfGatewayTimeout creates a GetRoleSelfGatewayTimeout with default headers values

func (*GetRoleSelfGatewayTimeout) Error

func (o *GetRoleSelfGatewayTimeout) Error() string

func (*GetRoleSelfGatewayTimeout) GetPayload

type GetRoleSelfInternalServerError

type GetRoleSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetRoleSelfInternalServerError

func NewGetRoleSelfInternalServerError() *GetRoleSelfInternalServerError

NewGetRoleSelfInternalServerError creates a GetRoleSelfInternalServerError with default headers values

func (*GetRoleSelfInternalServerError) Error

func (*GetRoleSelfInternalServerError) GetPayload

type GetRoleSelfNotFound

type GetRoleSelfNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleSelfNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetRoleSelfNotFound

func NewGetRoleSelfNotFound() *GetRoleSelfNotFound

NewGetRoleSelfNotFound creates a GetRoleSelfNotFound with default headers values

func (*GetRoleSelfNotFound) Error

func (o *GetRoleSelfNotFound) Error() string

func (*GetRoleSelfNotFound) GetPayload

type GetRoleSelfOK

type GetRoleSelfOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetRoleSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewGetRoleSelfOK

func NewGetRoleSelfOK() *GetRoleSelfOK

NewGetRoleSelfOK creates a GetRoleSelfOK with default headers values

func (*GetRoleSelfOK) Error

func (o *GetRoleSelfOK) Error() string

func (*GetRoleSelfOK) GetPayload

type GetRoleSelfParams

type GetRoleSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

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

GetRoleSelfParams contains all the parameters to send to the API endpoint

for the get role self operation.

Typically these are written to a http.Request.

func NewGetRoleSelfParams

func NewGetRoleSelfParams() *GetRoleSelfParams

NewGetRoleSelfParams creates a new GetRoleSelfParams 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 NewGetRoleSelfParamsWithContext

func NewGetRoleSelfParamsWithContext(ctx context.Context) *GetRoleSelfParams

NewGetRoleSelfParamsWithContext creates a new GetRoleSelfParams object with the ability to set a context for a request.

func NewGetRoleSelfParamsWithHTTPClient

func NewGetRoleSelfParamsWithHTTPClient(client *http.Client) *GetRoleSelfParams

NewGetRoleSelfParamsWithHTTPClient creates a new GetRoleSelfParams object with the ability to set a custom HTTPClient for a request.

func NewGetRoleSelfParamsWithTimeout

func NewGetRoleSelfParamsWithTimeout(timeout time.Duration) *GetRoleSelfParams

NewGetRoleSelfParamsWithTimeout creates a new GetRoleSelfParams object with the ability to set a timeout on a request.

func (*GetRoleSelfParams) SetContext

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

SetContext adds the context to the get role self params

func (*GetRoleSelfParams) SetDefaults

func (o *GetRoleSelfParams) SetDefaults()

SetDefaults hydrates default values in the get role self params (not the query body).

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

func (*GetRoleSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get role self params

func (*GetRoleSelfParams) SetTimeout

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

SetTimeout adds the timeout to the get role self params

func (*GetRoleSelfParams) SetXRequestID

func (o *GetRoleSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get role self params

func (*GetRoleSelfParams) WithContext

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

WithContext adds the context to the get role self params

func (*GetRoleSelfParams) WithDefaults

func (o *GetRoleSelfParams) WithDefaults() *GetRoleSelfParams

WithDefaults hydrates default values in the get role self params (not the query body).

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

func (*GetRoleSelfParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get role self params

func (*GetRoleSelfParams) WithTimeout

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

WithTimeout adds the timeout to the get role self params

func (*GetRoleSelfParams) WithXRequestID

func (o *GetRoleSelfParams) WithXRequestID(xRequestID *string) *GetRoleSelfParams

WithXRequestID adds the xRequestID to the get role self params

func (*GetRoleSelfParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetRoleSelfReader

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

GetRoleSelfReader is a Reader for the GetRoleSelf structure.

func (*GetRoleSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRoleSelfUnauthorized

type GetRoleSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetRoleSelfUnauthorized

func NewGetRoleSelfUnauthorized() *GetRoleSelfUnauthorized

NewGetRoleSelfUnauthorized creates a GetRoleSelfUnauthorized with default headers values

func (*GetRoleSelfUnauthorized) Error

func (o *GetRoleSelfUnauthorized) Error() string

func (*GetRoleSelfUnauthorized) GetPayload

type GetRoleUnauthorized

type GetRoleUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetRoleUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetRoleUnauthorized

func NewGetRoleUnauthorized() *GetRoleUnauthorized

NewGetRoleUnauthorized creates a GetRoleUnauthorized with default headers values

func (*GetRoleUnauthorized) Error

func (o *GetRoleUnauthorized) Error() string

func (*GetRoleUnauthorized) GetPayload

type GetUserByNameForbidden

type GetUserByNameForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserByNameForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetUserByNameForbidden

func NewGetUserByNameForbidden() *GetUserByNameForbidden

NewGetUserByNameForbidden creates a GetUserByNameForbidden with default headers values

func (*GetUserByNameForbidden) Error

func (o *GetUserByNameForbidden) Error() string

func (*GetUserByNameForbidden) GetPayload

type GetUserByNameGatewayTimeout

type GetUserByNameGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserByNameGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetUserByNameGatewayTimeout

func NewGetUserByNameGatewayTimeout() *GetUserByNameGatewayTimeout

NewGetUserByNameGatewayTimeout creates a GetUserByNameGatewayTimeout with default headers values

func (*GetUserByNameGatewayTimeout) Error

func (*GetUserByNameGatewayTimeout) GetPayload

type GetUserByNameInternalServerError

type GetUserByNameInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserByNameInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetUserByNameInternalServerError

func NewGetUserByNameInternalServerError() *GetUserByNameInternalServerError

NewGetUserByNameInternalServerError creates a GetUserByNameInternalServerError with default headers values

func (*GetUserByNameInternalServerError) Error

func (*GetUserByNameInternalServerError) GetPayload

type GetUserByNameNotFound

type GetUserByNameNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserByNameNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetUserByNameNotFound

func NewGetUserByNameNotFound() *GetUserByNameNotFound

NewGetUserByNameNotFound creates a GetUserByNameNotFound with default headers values

func (*GetUserByNameNotFound) Error

func (o *GetUserByNameNotFound) Error() string

func (*GetUserByNameNotFound) GetPayload

type GetUserByNameOK

type GetUserByNameOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetUserByNameOK describes a response with status code 200, with default header values.

A successful response.

func NewGetUserByNameOK

func NewGetUserByNameOK() *GetUserByNameOK

NewGetUserByNameOK creates a GetUserByNameOK with default headers values

func (*GetUserByNameOK) Error

func (o *GetUserByNameOK) Error() string

func (*GetUserByNameOK) GetPayload

type GetUserByNameParams

type GetUserByNameParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Name.
	Name string

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

GetUserByNameParams contains all the parameters to send to the API endpoint

for the get user by name operation.

Typically these are written to a http.Request.

func NewGetUserByNameParams

func NewGetUserByNameParams() *GetUserByNameParams

NewGetUserByNameParams creates a new GetUserByNameParams 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 NewGetUserByNameParamsWithContext

func NewGetUserByNameParamsWithContext(ctx context.Context) *GetUserByNameParams

NewGetUserByNameParamsWithContext creates a new GetUserByNameParams object with the ability to set a context for a request.

func NewGetUserByNameParamsWithHTTPClient

func NewGetUserByNameParamsWithHTTPClient(client *http.Client) *GetUserByNameParams

NewGetUserByNameParamsWithHTTPClient creates a new GetUserByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserByNameParamsWithTimeout

func NewGetUserByNameParamsWithTimeout(timeout time.Duration) *GetUserByNameParams

NewGetUserByNameParamsWithTimeout creates a new GetUserByNameParams object with the ability to set a timeout on a request.

func (*GetUserByNameParams) SetContext

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

SetContext adds the context to the get user by name params

func (*GetUserByNameParams) SetDefaults

func (o *GetUserByNameParams) SetDefaults()

SetDefaults hydrates default values in the get user by name params (not the query body).

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

func (*GetUserByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get user by name params

func (*GetUserByNameParams) SetName

func (o *GetUserByNameParams) SetName(name string)

SetName adds the name to the get user by name params

func (*GetUserByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get user by name params

func (*GetUserByNameParams) SetXRequestID

func (o *GetUserByNameParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get user by name params

func (*GetUserByNameParams) WithContext

WithContext adds the context to the get user by name params

func (*GetUserByNameParams) WithDefaults

func (o *GetUserByNameParams) WithDefaults() *GetUserByNameParams

WithDefaults hydrates default values in the get user by name params (not the query body).

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

func (*GetUserByNameParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get user by name params

func (*GetUserByNameParams) WithName

func (o *GetUserByNameParams) WithName(name string) *GetUserByNameParams

WithName adds the name to the get user by name params

func (*GetUserByNameParams) WithTimeout

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

WithTimeout adds the timeout to the get user by name params

func (*GetUserByNameParams) WithXRequestID

func (o *GetUserByNameParams) WithXRequestID(xRequestID *string) *GetUserByNameParams

WithXRequestID adds the xRequestID to the get user by name params

func (*GetUserByNameParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUserByNameReader

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

GetUserByNameReader is a Reader for the GetUserByName structure.

func (*GetUserByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUserByNameUnauthorized

type GetUserByNameUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserByNameUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetUserByNameUnauthorized

func NewGetUserByNameUnauthorized() *GetUserByNameUnauthorized

NewGetUserByNameUnauthorized creates a GetUserByNameUnauthorized with default headers values

func (*GetUserByNameUnauthorized) Error

func (o *GetUserByNameUnauthorized) Error() string

func (*GetUserByNameUnauthorized) GetPayload

type GetUserForbidden

type GetUserForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetUserForbidden

func NewGetUserForbidden() *GetUserForbidden

NewGetUserForbidden creates a GetUserForbidden with default headers values

func (*GetUserForbidden) Error

func (o *GetUserForbidden) Error() string

func (*GetUserForbidden) GetPayload

func (o *GetUserForbidden) GetPayload() *swagger_models.ZsrvResponse

type GetUserGatewayTimeout

type GetUserGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetUserGatewayTimeout

func NewGetUserGatewayTimeout() *GetUserGatewayTimeout

NewGetUserGatewayTimeout creates a GetUserGatewayTimeout with default headers values

func (*GetUserGatewayTimeout) Error

func (o *GetUserGatewayTimeout) Error() string

func (*GetUserGatewayTimeout) GetPayload

type GetUserInternalServerError

type GetUserInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetUserInternalServerError

func NewGetUserInternalServerError() *GetUserInternalServerError

NewGetUserInternalServerError creates a GetUserInternalServerError with default headers values

func (*GetUserInternalServerError) Error

func (*GetUserInternalServerError) GetPayload

type GetUserNotFound

type GetUserNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetUserNotFound

func NewGetUserNotFound() *GetUserNotFound

NewGetUserNotFound creates a GetUserNotFound with default headers values

func (*GetUserNotFound) Error

func (o *GetUserNotFound) Error() string

func (*GetUserNotFound) GetPayload

func (o *GetUserNotFound) GetPayload() *swagger_models.ZsrvResponse

type GetUserOK

type GetUserOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetUserOK describes a response with status code 200, with default header values.

A successful response.

func NewGetUserOK

func NewGetUserOK() *GetUserOK

NewGetUserOK creates a GetUserOK with default headers values

func (*GetUserOK) Error

func (o *GetUserOK) Error() string

func (*GetUserOK) GetPayload

func (o *GetUserOK) GetPayload() *swagger_models.CrudResponseRead

type GetUserParams

type GetUserParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// ID.
	ID string

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

GetUserParams contains all the parameters to send to the API endpoint

for the get user operation.

Typically these are written to a http.Request.

func NewGetUserParams

func NewGetUserParams() *GetUserParams

NewGetUserParams creates a new GetUserParams 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 NewGetUserParamsWithContext

func NewGetUserParamsWithContext(ctx context.Context) *GetUserParams

NewGetUserParamsWithContext creates a new GetUserParams object with the ability to set a context for a request.

func NewGetUserParamsWithHTTPClient

func NewGetUserParamsWithHTTPClient(client *http.Client) *GetUserParams

NewGetUserParamsWithHTTPClient creates a new GetUserParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserParamsWithTimeout

func NewGetUserParamsWithTimeout(timeout time.Duration) *GetUserParams

NewGetUserParamsWithTimeout creates a new GetUserParams object with the ability to set a timeout on a request.

func (*GetUserParams) SetContext

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

SetContext adds the context to the get user params

func (*GetUserParams) SetDefaults

func (o *GetUserParams) SetDefaults()

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

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

func (*GetUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get user params

func (*GetUserParams) SetID

func (o *GetUserParams) SetID(id string)

SetID adds the id to the get user params

func (*GetUserParams) SetTimeout

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

SetTimeout adds the timeout to the get user params

func (*GetUserParams) SetXRequestID

func (o *GetUserParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get user params

func (*GetUserParams) WithContext

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

WithContext adds the context to the get user params

func (*GetUserParams) WithDefaults

func (o *GetUserParams) WithDefaults() *GetUserParams

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

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

func (*GetUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get user params

func (*GetUserParams) WithID

func (o *GetUserParams) WithID(id string) *GetUserParams

WithID adds the id to the get user params

func (*GetUserParams) WithTimeout

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

WithTimeout adds the timeout to the get user params

func (*GetUserParams) WithXRequestID

func (o *GetUserParams) WithXRequestID(xRequestID *string) *GetUserParams

WithXRequestID adds the xRequestID to the get user params

func (*GetUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUserReader

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

GetUserReader is a Reader for the GetUser structure.

func (*GetUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUserSelfForbidden

type GetUserSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetUserSelfForbidden

func NewGetUserSelfForbidden() *GetUserSelfForbidden

NewGetUserSelfForbidden creates a GetUserSelfForbidden with default headers values

func (*GetUserSelfForbidden) Error

func (o *GetUserSelfForbidden) Error() string

func (*GetUserSelfForbidden) GetPayload

type GetUserSelfGatewayTimeout

type GetUserSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetUserSelfGatewayTimeout

func NewGetUserSelfGatewayTimeout() *GetUserSelfGatewayTimeout

NewGetUserSelfGatewayTimeout creates a GetUserSelfGatewayTimeout with default headers values

func (*GetUserSelfGatewayTimeout) Error

func (o *GetUserSelfGatewayTimeout) Error() string

func (*GetUserSelfGatewayTimeout) GetPayload

type GetUserSelfInternalServerError

type GetUserSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetUserSelfInternalServerError

func NewGetUserSelfInternalServerError() *GetUserSelfInternalServerError

NewGetUserSelfInternalServerError creates a GetUserSelfInternalServerError with default headers values

func (*GetUserSelfInternalServerError) Error

func (*GetUserSelfInternalServerError) GetPayload

type GetUserSelfNotFound

type GetUserSelfNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSelfNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewGetUserSelfNotFound

func NewGetUserSelfNotFound() *GetUserSelfNotFound

NewGetUserSelfNotFound creates a GetUserSelfNotFound with default headers values

func (*GetUserSelfNotFound) Error

func (o *GetUserSelfNotFound) Error() string

func (*GetUserSelfNotFound) GetPayload

type GetUserSelfOK

type GetUserSelfOK struct {
	Payload *swagger_models.CrudResponseRead
}
GetUserSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewGetUserSelfOK

func NewGetUserSelfOK() *GetUserSelfOK

NewGetUserSelfOK creates a GetUserSelfOK with default headers values

func (*GetUserSelfOK) Error

func (o *GetUserSelfOK) Error() string

func (*GetUserSelfOK) GetPayload

type GetUserSelfParams

type GetUserSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

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

GetUserSelfParams contains all the parameters to send to the API endpoint

for the get user self operation.

Typically these are written to a http.Request.

func NewGetUserSelfParams

func NewGetUserSelfParams() *GetUserSelfParams

NewGetUserSelfParams creates a new GetUserSelfParams 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 NewGetUserSelfParamsWithContext

func NewGetUserSelfParamsWithContext(ctx context.Context) *GetUserSelfParams

NewGetUserSelfParamsWithContext creates a new GetUserSelfParams object with the ability to set a context for a request.

func NewGetUserSelfParamsWithHTTPClient

func NewGetUserSelfParamsWithHTTPClient(client *http.Client) *GetUserSelfParams

NewGetUserSelfParamsWithHTTPClient creates a new GetUserSelfParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserSelfParamsWithTimeout

func NewGetUserSelfParamsWithTimeout(timeout time.Duration) *GetUserSelfParams

NewGetUserSelfParamsWithTimeout creates a new GetUserSelfParams object with the ability to set a timeout on a request.

func (*GetUserSelfParams) SetContext

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

SetContext adds the context to the get user self params

func (*GetUserSelfParams) SetDefaults

func (o *GetUserSelfParams) SetDefaults()

SetDefaults hydrates default values in the get user self params (not the query body).

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

func (*GetUserSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get user self params

func (*GetUserSelfParams) SetTimeout

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

SetTimeout adds the timeout to the get user self params

func (*GetUserSelfParams) SetXRequestID

func (o *GetUserSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get user self params

func (*GetUserSelfParams) WithContext

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

WithContext adds the context to the get user self params

func (*GetUserSelfParams) WithDefaults

func (o *GetUserSelfParams) WithDefaults() *GetUserSelfParams

WithDefaults hydrates default values in the get user self params (not the query body).

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

func (*GetUserSelfParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get user self params

func (*GetUserSelfParams) WithTimeout

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

WithTimeout adds the timeout to the get user self params

func (*GetUserSelfParams) WithXRequestID

func (o *GetUserSelfParams) WithXRequestID(xRequestID *string) *GetUserSelfParams

WithXRequestID adds the xRequestID to the get user self params

func (*GetUserSelfParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUserSelfReader

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

GetUserSelfReader is a Reader for the GetUserSelf structure.

func (*GetUserSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUserSelfUnauthorized

type GetUserSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetUserSelfUnauthorized

func NewGetUserSelfUnauthorized() *GetUserSelfUnauthorized

NewGetUserSelfUnauthorized creates a GetUserSelfUnauthorized with default headers values

func (*GetUserSelfUnauthorized) Error

func (o *GetUserSelfUnauthorized) Error() string

func (*GetUserSelfUnauthorized) GetPayload

type GetUserSessionForbidden

type GetUserSessionForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetUserSessionForbidden

func NewGetUserSessionForbidden() *GetUserSessionForbidden

NewGetUserSessionForbidden creates a GetUserSessionForbidden with default headers values

func (*GetUserSessionForbidden) Error

func (o *GetUserSessionForbidden) Error() string

func (*GetUserSessionForbidden) GetPayload

type GetUserSessionGatewayTimeout

type GetUserSessionGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetUserSessionGatewayTimeout

func NewGetUserSessionGatewayTimeout() *GetUserSessionGatewayTimeout

NewGetUserSessionGatewayTimeout creates a GetUserSessionGatewayTimeout with default headers values

func (*GetUserSessionGatewayTimeout) Error

func (*GetUserSessionGatewayTimeout) GetPayload

type GetUserSessionInternalServerError

type GetUserSessionInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetUserSessionInternalServerError

func NewGetUserSessionInternalServerError() *GetUserSessionInternalServerError

NewGetUserSessionInternalServerError creates a GetUserSessionInternalServerError with default headers values

func (*GetUserSessionInternalServerError) Error

func (*GetUserSessionInternalServerError) GetPayload

type GetUserSessionOK

type GetUserSessionOK struct {
	Payload *swagger_models.AAAFrontendSessionDetailsResponse
}
GetUserSessionOK describes a response with status code 200, with default header values.

A successful response.

func NewGetUserSessionOK

func NewGetUserSessionOK() *GetUserSessionOK

NewGetUserSessionOK creates a GetUserSessionOK with default headers values

func (*GetUserSessionOK) Error

func (o *GetUserSessionOK) Error() string

func (*GetUserSessionOK) GetPayload

type GetUserSessionParams

type GetUserSessionParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// SessionTokenBase64.
	SessionTokenBase64 string

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

GetUserSessionParams contains all the parameters to send to the API endpoint

for the get user session operation.

Typically these are written to a http.Request.

func NewGetUserSessionParams

func NewGetUserSessionParams() *GetUserSessionParams

NewGetUserSessionParams creates a new GetUserSessionParams 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 NewGetUserSessionParamsWithContext

func NewGetUserSessionParamsWithContext(ctx context.Context) *GetUserSessionParams

NewGetUserSessionParamsWithContext creates a new GetUserSessionParams object with the ability to set a context for a request.

func NewGetUserSessionParamsWithHTTPClient

func NewGetUserSessionParamsWithHTTPClient(client *http.Client) *GetUserSessionParams

NewGetUserSessionParamsWithHTTPClient creates a new GetUserSessionParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserSessionParamsWithTimeout

func NewGetUserSessionParamsWithTimeout(timeout time.Duration) *GetUserSessionParams

NewGetUserSessionParamsWithTimeout creates a new GetUserSessionParams object with the ability to set a timeout on a request.

func (*GetUserSessionParams) SetContext

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

SetContext adds the context to the get user session params

func (*GetUserSessionParams) SetDefaults

func (o *GetUserSessionParams) SetDefaults()

SetDefaults hydrates default values in the get user session params (not the query body).

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

func (*GetUserSessionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get user session params

func (*GetUserSessionParams) SetSessionTokenBase64

func (o *GetUserSessionParams) SetSessionTokenBase64(sessionTokenBase64 string)

SetSessionTokenBase64 adds the sessionTokenBase64 to the get user session params

func (*GetUserSessionParams) SetTimeout

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

SetTimeout adds the timeout to the get user session params

func (*GetUserSessionParams) SetXRequestID

func (o *GetUserSessionParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get user session params

func (*GetUserSessionParams) WithContext

WithContext adds the context to the get user session params

func (*GetUserSessionParams) WithDefaults

func (o *GetUserSessionParams) WithDefaults() *GetUserSessionParams

WithDefaults hydrates default values in the get user session params (not the query body).

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

func (*GetUserSessionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get user session params

func (*GetUserSessionParams) WithSessionTokenBase64

func (o *GetUserSessionParams) WithSessionTokenBase64(sessionTokenBase64 string) *GetUserSessionParams

WithSessionTokenBase64 adds the sessionTokenBase64 to the get user session params

func (*GetUserSessionParams) WithTimeout

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

WithTimeout adds the timeout to the get user session params

func (*GetUserSessionParams) WithXRequestID

func (o *GetUserSessionParams) WithXRequestID(xRequestID *string) *GetUserSessionParams

WithXRequestID adds the xRequestID to the get user session params

func (*GetUserSessionParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetUserSessionReader

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

GetUserSessionReader is a Reader for the GetUserSession structure.

func (*GetUserSessionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUserSessionSelfForbidden

type GetUserSessionSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewGetUserSessionSelfForbidden

func NewGetUserSessionSelfForbidden() *GetUserSessionSelfForbidden

NewGetUserSessionSelfForbidden creates a GetUserSessionSelfForbidden with default headers values

func (*GetUserSessionSelfForbidden) Error

func (*GetUserSessionSelfForbidden) GetPayload

type GetUserSessionSelfGatewayTimeout

type GetUserSessionSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewGetUserSessionSelfGatewayTimeout

func NewGetUserSessionSelfGatewayTimeout() *GetUserSessionSelfGatewayTimeout

NewGetUserSessionSelfGatewayTimeout creates a GetUserSessionSelfGatewayTimeout with default headers values

func (*GetUserSessionSelfGatewayTimeout) Error

func (*GetUserSessionSelfGatewayTimeout) GetPayload

type GetUserSessionSelfInternalServerError

type GetUserSessionSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewGetUserSessionSelfInternalServerError

func NewGetUserSessionSelfInternalServerError() *GetUserSessionSelfInternalServerError

NewGetUserSessionSelfInternalServerError creates a GetUserSessionSelfInternalServerError with default headers values

func (*GetUserSessionSelfInternalServerError) Error

func (*GetUserSessionSelfInternalServerError) GetPayload

type GetUserSessionSelfOK

type GetUserSessionSelfOK struct {
	Payload *swagger_models.AAAFrontendSessionDetailsResponse
}
GetUserSessionSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewGetUserSessionSelfOK

func NewGetUserSessionSelfOK() *GetUserSessionSelfOK

NewGetUserSessionSelfOK creates a GetUserSessionSelfOK with default headers values

func (*GetUserSessionSelfOK) Error

func (o *GetUserSessionSelfOK) Error() string

func (*GetUserSessionSelfOK) GetPayload

type GetUserSessionSelfParams

type GetUserSessionSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// SessionTokenBase64.
	SessionTokenBase64 *string

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

GetUserSessionSelfParams contains all the parameters to send to the API endpoint

for the get user session self operation.

Typically these are written to a http.Request.

func NewGetUserSessionSelfParams

func NewGetUserSessionSelfParams() *GetUserSessionSelfParams

NewGetUserSessionSelfParams creates a new GetUserSessionSelfParams 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 NewGetUserSessionSelfParamsWithContext

func NewGetUserSessionSelfParamsWithContext(ctx context.Context) *GetUserSessionSelfParams

NewGetUserSessionSelfParamsWithContext creates a new GetUserSessionSelfParams object with the ability to set a context for a request.

func NewGetUserSessionSelfParamsWithHTTPClient

func NewGetUserSessionSelfParamsWithHTTPClient(client *http.Client) *GetUserSessionSelfParams

NewGetUserSessionSelfParamsWithHTTPClient creates a new GetUserSessionSelfParams object with the ability to set a custom HTTPClient for a request.

func NewGetUserSessionSelfParamsWithTimeout

func NewGetUserSessionSelfParamsWithTimeout(timeout time.Duration) *GetUserSessionSelfParams

NewGetUserSessionSelfParamsWithTimeout creates a new GetUserSessionSelfParams object with the ability to set a timeout on a request.

func (*GetUserSessionSelfParams) SetContext

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

SetContext adds the context to the get user session self params

func (*GetUserSessionSelfParams) SetDefaults

func (o *GetUserSessionSelfParams) SetDefaults()

SetDefaults hydrates default values in the get user session self params (not the query body).

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

func (*GetUserSessionSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get user session self params

func (*GetUserSessionSelfParams) SetSessionTokenBase64

func (o *GetUserSessionSelfParams) SetSessionTokenBase64(sessionTokenBase64 *string)

SetSessionTokenBase64 adds the sessionTokenBase64 to the get user session self params

func (*GetUserSessionSelfParams) SetTimeout

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

SetTimeout adds the timeout to the get user session self params

func (*GetUserSessionSelfParams) SetXRequestID

func (o *GetUserSessionSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get user session self params

func (*GetUserSessionSelfParams) WithContext

WithContext adds the context to the get user session self params

func (*GetUserSessionSelfParams) WithDefaults

WithDefaults hydrates default values in the get user session self params (not the query body).

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

func (*GetUserSessionSelfParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get user session self params

func (*GetUserSessionSelfParams) WithSessionTokenBase64

func (o *GetUserSessionSelfParams) WithSessionTokenBase64(sessionTokenBase64 *string) *GetUserSessionSelfParams

WithSessionTokenBase64 adds the sessionTokenBase64 to the get user session self params

func (*GetUserSessionSelfParams) WithTimeout

WithTimeout adds the timeout to the get user session self params

func (*GetUserSessionSelfParams) WithXRequestID

func (o *GetUserSessionSelfParams) WithXRequestID(xRequestID *string) *GetUserSessionSelfParams

WithXRequestID adds the xRequestID to the get user session self params

func (*GetUserSessionSelfParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUserSessionSelfReader

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

GetUserSessionSelfReader is a Reader for the GetUserSessionSelf structure.

func (*GetUserSessionSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUserSessionSelfUnauthorized

type GetUserSessionSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetUserSessionSelfUnauthorized

func NewGetUserSessionSelfUnauthorized() *GetUserSessionSelfUnauthorized

NewGetUserSessionSelfUnauthorized creates a GetUserSessionSelfUnauthorized with default headers values

func (*GetUserSessionSelfUnauthorized) Error

func (*GetUserSessionSelfUnauthorized) GetPayload

type GetUserSessionUnauthorized

type GetUserSessionUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserSessionUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetUserSessionUnauthorized

func NewGetUserSessionUnauthorized() *GetUserSessionUnauthorized

NewGetUserSessionUnauthorized creates a GetUserSessionUnauthorized with default headers values

func (*GetUserSessionUnauthorized) Error

func (*GetUserSessionUnauthorized) GetPayload

type GetUserUnauthorized

type GetUserUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
GetUserUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewGetUserUnauthorized

func NewGetUserUnauthorized() *GetUserUnauthorized

NewGetUserUnauthorized creates a GetUserUnauthorized with default headers values

func (*GetUserUnauthorized) Error

func (o *GetUserUnauthorized) Error() string

func (*GetUserUnauthorized) GetPayload

type LoginExternalForbidden

type LoginExternalForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLoginExternalForbidden

func NewLoginExternalForbidden() *LoginExternalForbidden

NewLoginExternalForbidden creates a LoginExternalForbidden with default headers values

func (*LoginExternalForbidden) Error

func (o *LoginExternalForbidden) Error() string

func (*LoginExternalForbidden) GetPayload

type LoginExternalGatewayTimeout

type LoginExternalGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLoginExternalGatewayTimeout

func NewLoginExternalGatewayTimeout() *LoginExternalGatewayTimeout

NewLoginExternalGatewayTimeout creates a LoginExternalGatewayTimeout with default headers values

func (*LoginExternalGatewayTimeout) Error

func (*LoginExternalGatewayTimeout) GetPayload

type LoginExternalInternalServerError

type LoginExternalInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLoginExternalInternalServerError

func NewLoginExternalInternalServerError() *LoginExternalInternalServerError

NewLoginExternalInternalServerError creates a LoginExternalInternalServerError with default headers values

func (*LoginExternalInternalServerError) Error

func (*LoginExternalInternalServerError) GetPayload

type LoginExternalOAuth2CallbackForbidden

type LoginExternalOAuth2CallbackForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalOAuth2CallbackForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLoginExternalOAuth2CallbackForbidden

func NewLoginExternalOAuth2CallbackForbidden() *LoginExternalOAuth2CallbackForbidden

NewLoginExternalOAuth2CallbackForbidden creates a LoginExternalOAuth2CallbackForbidden with default headers values

func (*LoginExternalOAuth2CallbackForbidden) Error

func (*LoginExternalOAuth2CallbackForbidden) GetPayload

type LoginExternalOAuth2CallbackGatewayTimeout

type LoginExternalOAuth2CallbackGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalOAuth2CallbackGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLoginExternalOAuth2CallbackGatewayTimeout

func NewLoginExternalOAuth2CallbackGatewayTimeout() *LoginExternalOAuth2CallbackGatewayTimeout

NewLoginExternalOAuth2CallbackGatewayTimeout creates a LoginExternalOAuth2CallbackGatewayTimeout with default headers values

func (*LoginExternalOAuth2CallbackGatewayTimeout) Error

func (*LoginExternalOAuth2CallbackGatewayTimeout) GetPayload

type LoginExternalOAuth2CallbackInternalServerError

type LoginExternalOAuth2CallbackInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalOAuth2CallbackInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLoginExternalOAuth2CallbackInternalServerError

func NewLoginExternalOAuth2CallbackInternalServerError() *LoginExternalOAuth2CallbackInternalServerError

NewLoginExternalOAuth2CallbackInternalServerError creates a LoginExternalOAuth2CallbackInternalServerError with default headers values

func (*LoginExternalOAuth2CallbackInternalServerError) Error

func (*LoginExternalOAuth2CallbackInternalServerError) GetPayload

type LoginExternalOAuth2CallbackOK

type LoginExternalOAuth2CallbackOK struct {
	Payload *swagger_models.AAAFrontendLoginResponse
}
LoginExternalOAuth2CallbackOK describes a response with status code 200, with default header values.

A successful response.

func NewLoginExternalOAuth2CallbackOK

func NewLoginExternalOAuth2CallbackOK() *LoginExternalOAuth2CallbackOK

NewLoginExternalOAuth2CallbackOK creates a LoginExternalOAuth2CallbackOK with default headers values

func (*LoginExternalOAuth2CallbackOK) Error

func (*LoginExternalOAuth2CallbackOK) GetPayload

type LoginExternalOAuth2CallbackParams

type LoginExternalOAuth2CallbackParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAAFrontendOAUTHCallbackRequest

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

LoginExternalOAuth2CallbackParams contains all the parameters to send to the API endpoint

for the login external o auth2 callback operation.

Typically these are written to a http.Request.

func NewLoginExternalOAuth2CallbackParams

func NewLoginExternalOAuth2CallbackParams() *LoginExternalOAuth2CallbackParams

NewLoginExternalOAuth2CallbackParams creates a new LoginExternalOAuth2CallbackParams 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 NewLoginExternalOAuth2CallbackParamsWithContext

func NewLoginExternalOAuth2CallbackParamsWithContext(ctx context.Context) *LoginExternalOAuth2CallbackParams

NewLoginExternalOAuth2CallbackParamsWithContext creates a new LoginExternalOAuth2CallbackParams object with the ability to set a context for a request.

func NewLoginExternalOAuth2CallbackParamsWithHTTPClient

func NewLoginExternalOAuth2CallbackParamsWithHTTPClient(client *http.Client) *LoginExternalOAuth2CallbackParams

NewLoginExternalOAuth2CallbackParamsWithHTTPClient creates a new LoginExternalOAuth2CallbackParams object with the ability to set a custom HTTPClient for a request.

func NewLoginExternalOAuth2CallbackParamsWithTimeout

func NewLoginExternalOAuth2CallbackParamsWithTimeout(timeout time.Duration) *LoginExternalOAuth2CallbackParams

NewLoginExternalOAuth2CallbackParamsWithTimeout creates a new LoginExternalOAuth2CallbackParams object with the ability to set a timeout on a request.

func (*LoginExternalOAuth2CallbackParams) SetBody

SetBody adds the body to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) SetContext

SetContext adds the context to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) SetDefaults

func (o *LoginExternalOAuth2CallbackParams) SetDefaults()

SetDefaults hydrates default values in the login external o auth2 callback params (not the query body).

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

func (*LoginExternalOAuth2CallbackParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) SetTimeout

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

SetTimeout adds the timeout to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) SetXRequestID

func (o *LoginExternalOAuth2CallbackParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WithBody

WithBody adds the body to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WithContext

WithContext adds the context to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WithDefaults

WithDefaults hydrates default values in the login external o auth2 callback params (not the query body).

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

func (*LoginExternalOAuth2CallbackParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WithTimeout

WithTimeout adds the timeout to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WithXRequestID

WithXRequestID adds the xRequestID to the login external o auth2 callback params

func (*LoginExternalOAuth2CallbackParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type LoginExternalOAuth2CallbackReader

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

LoginExternalOAuth2CallbackReader is a Reader for the LoginExternalOAuth2Callback structure.

func (*LoginExternalOAuth2CallbackReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LoginExternalOAuth2CallbackUnauthorized

type LoginExternalOAuth2CallbackUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalOAuth2CallbackUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLoginExternalOAuth2CallbackUnauthorized

func NewLoginExternalOAuth2CallbackUnauthorized() *LoginExternalOAuth2CallbackUnauthorized

NewLoginExternalOAuth2CallbackUnauthorized creates a LoginExternalOAuth2CallbackUnauthorized with default headers values

func (*LoginExternalOAuth2CallbackUnauthorized) Error

func (*LoginExternalOAuth2CallbackUnauthorized) GetPayload

type LoginExternalOK

type LoginExternalOK struct {
	Payload *swagger_models.AAAFrontendLoginResponse
}
LoginExternalOK describes a response with status code 200, with default header values.

A successful response.

func NewLoginExternalOK

func NewLoginExternalOK() *LoginExternalOK

NewLoginExternalOK creates a LoginExternalOK with default headers values

func (*LoginExternalOK) Error

func (o *LoginExternalOK) Error() string

func (*LoginExternalOK) GetPayload

type LoginExternalParams

type LoginExternalParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAAFrontendLoginWithOauthRequest

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

LoginExternalParams contains all the parameters to send to the API endpoint

for the login external operation.

Typically these are written to a http.Request.

func NewLoginExternalParams

func NewLoginExternalParams() *LoginExternalParams

NewLoginExternalParams creates a new LoginExternalParams 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 NewLoginExternalParamsWithContext

func NewLoginExternalParamsWithContext(ctx context.Context) *LoginExternalParams

NewLoginExternalParamsWithContext creates a new LoginExternalParams object with the ability to set a context for a request.

func NewLoginExternalParamsWithHTTPClient

func NewLoginExternalParamsWithHTTPClient(client *http.Client) *LoginExternalParams

NewLoginExternalParamsWithHTTPClient creates a new LoginExternalParams object with the ability to set a custom HTTPClient for a request.

func NewLoginExternalParamsWithTimeout

func NewLoginExternalParamsWithTimeout(timeout time.Duration) *LoginExternalParams

NewLoginExternalParamsWithTimeout creates a new LoginExternalParams object with the ability to set a timeout on a request.

func (*LoginExternalParams) SetBody

SetBody adds the body to the login external params

func (*LoginExternalParams) SetContext

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

SetContext adds the context to the login external params

func (*LoginExternalParams) SetDefaults

func (o *LoginExternalParams) SetDefaults()

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

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

func (*LoginExternalParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the login external params

func (*LoginExternalParams) SetTimeout

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

SetTimeout adds the timeout to the login external params

func (*LoginExternalParams) SetXRequestID

func (o *LoginExternalParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the login external params

func (*LoginExternalParams) WithBody

WithBody adds the body to the login external params

func (*LoginExternalParams) WithContext

WithContext adds the context to the login external params

func (*LoginExternalParams) WithDefaults

func (o *LoginExternalParams) WithDefaults() *LoginExternalParams

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

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

func (*LoginExternalParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the login external params

func (*LoginExternalParams) WithTimeout

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

WithTimeout adds the timeout to the login external params

func (*LoginExternalParams) WithXRequestID

func (o *LoginExternalParams) WithXRequestID(xRequestID *string) *LoginExternalParams

WithXRequestID adds the xRequestID to the login external params

func (*LoginExternalParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type LoginExternalReader

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

LoginExternalReader is a Reader for the LoginExternal structure.

func (*LoginExternalReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LoginExternalUnauthorized

type LoginExternalUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LoginExternalUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLoginExternalUnauthorized

func NewLoginExternalUnauthorized() *LoginExternalUnauthorized

NewLoginExternalUnauthorized creates a LoginExternalUnauthorized with default headers values

func (*LoginExternalUnauthorized) Error

func (o *LoginExternalUnauthorized) Error() string

func (*LoginExternalUnauthorized) GetPayload

type LoginForbidden

type LoginForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLoginForbidden

func NewLoginForbidden() *LoginForbidden

NewLoginForbidden creates a LoginForbidden with default headers values

func (*LoginForbidden) Error

func (o *LoginForbidden) Error() string

func (*LoginForbidden) GetPayload

func (o *LoginForbidden) GetPayload() *swagger_models.ZsrvResponse

type LoginForgotPasswordForbidden

type LoginForgotPasswordForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForgotPasswordForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLoginForgotPasswordForbidden

func NewLoginForgotPasswordForbidden() *LoginForgotPasswordForbidden

NewLoginForgotPasswordForbidden creates a LoginForgotPasswordForbidden with default headers values

func (*LoginForgotPasswordForbidden) Error

func (*LoginForgotPasswordForbidden) GetPayload

type LoginForgotPasswordGatewayTimeout

type LoginForgotPasswordGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForgotPasswordGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLoginForgotPasswordGatewayTimeout

func NewLoginForgotPasswordGatewayTimeout() *LoginForgotPasswordGatewayTimeout

NewLoginForgotPasswordGatewayTimeout creates a LoginForgotPasswordGatewayTimeout with default headers values

func (*LoginForgotPasswordGatewayTimeout) Error

func (*LoginForgotPasswordGatewayTimeout) GetPayload

type LoginForgotPasswordInternalServerError

type LoginForgotPasswordInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForgotPasswordInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLoginForgotPasswordInternalServerError

func NewLoginForgotPasswordInternalServerError() *LoginForgotPasswordInternalServerError

NewLoginForgotPasswordInternalServerError creates a LoginForgotPasswordInternalServerError with default headers values

func (*LoginForgotPasswordInternalServerError) Error

func (*LoginForgotPasswordInternalServerError) GetPayload

type LoginForgotPasswordOK

type LoginForgotPasswordOK struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForgotPasswordOK describes a response with status code 200, with default header values.

A successful response.

func NewLoginForgotPasswordOK

func NewLoginForgotPasswordOK() *LoginForgotPasswordOK

NewLoginForgotPasswordOK creates a LoginForgotPasswordOK with default headers values

func (*LoginForgotPasswordOK) Error

func (o *LoginForgotPasswordOK) Error() string

func (*LoginForgotPasswordOK) GetPayload

type LoginForgotPasswordParams

type LoginForgotPasswordParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAARequestLoginForgotPassword

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

LoginForgotPasswordParams contains all the parameters to send to the API endpoint

for the login forgot password operation.

Typically these are written to a http.Request.

func NewLoginForgotPasswordParams

func NewLoginForgotPasswordParams() *LoginForgotPasswordParams

NewLoginForgotPasswordParams creates a new LoginForgotPasswordParams 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 NewLoginForgotPasswordParamsWithContext

func NewLoginForgotPasswordParamsWithContext(ctx context.Context) *LoginForgotPasswordParams

NewLoginForgotPasswordParamsWithContext creates a new LoginForgotPasswordParams object with the ability to set a context for a request.

func NewLoginForgotPasswordParamsWithHTTPClient

func NewLoginForgotPasswordParamsWithHTTPClient(client *http.Client) *LoginForgotPasswordParams

NewLoginForgotPasswordParamsWithHTTPClient creates a new LoginForgotPasswordParams object with the ability to set a custom HTTPClient for a request.

func NewLoginForgotPasswordParamsWithTimeout

func NewLoginForgotPasswordParamsWithTimeout(timeout time.Duration) *LoginForgotPasswordParams

NewLoginForgotPasswordParamsWithTimeout creates a new LoginForgotPasswordParams object with the ability to set a timeout on a request.

func (*LoginForgotPasswordParams) SetBody

SetBody adds the body to the login forgot password params

func (*LoginForgotPasswordParams) SetContext

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

SetContext adds the context to the login forgot password params

func (*LoginForgotPasswordParams) SetDefaults

func (o *LoginForgotPasswordParams) SetDefaults()

SetDefaults hydrates default values in the login forgot password params (not the query body).

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

func (*LoginForgotPasswordParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the login forgot password params

func (*LoginForgotPasswordParams) SetTimeout

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

SetTimeout adds the timeout to the login forgot password params

func (*LoginForgotPasswordParams) SetXRequestID

func (o *LoginForgotPasswordParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the login forgot password params

func (*LoginForgotPasswordParams) WithBody

WithBody adds the body to the login forgot password params

func (*LoginForgotPasswordParams) WithContext

WithContext adds the context to the login forgot password params

func (*LoginForgotPasswordParams) WithDefaults

WithDefaults hydrates default values in the login forgot password params (not the query body).

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

func (*LoginForgotPasswordParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the login forgot password params

func (*LoginForgotPasswordParams) WithTimeout

WithTimeout adds the timeout to the login forgot password params

func (*LoginForgotPasswordParams) WithXRequestID

func (o *LoginForgotPasswordParams) WithXRequestID(xRequestID *string) *LoginForgotPasswordParams

WithXRequestID adds the xRequestID to the login forgot password params

func (*LoginForgotPasswordParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type LoginForgotPasswordReader

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

LoginForgotPasswordReader is a Reader for the LoginForgotPassword structure.

func (*LoginForgotPasswordReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LoginForgotPasswordUnauthorized

type LoginForgotPasswordUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LoginForgotPasswordUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLoginForgotPasswordUnauthorized

func NewLoginForgotPasswordUnauthorized() *LoginForgotPasswordUnauthorized

NewLoginForgotPasswordUnauthorized creates a LoginForgotPasswordUnauthorized with default headers values

func (*LoginForgotPasswordUnauthorized) Error

func (*LoginForgotPasswordUnauthorized) GetPayload

type LoginGatewayTimeout

type LoginGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LoginGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLoginGatewayTimeout

func NewLoginGatewayTimeout() *LoginGatewayTimeout

NewLoginGatewayTimeout creates a LoginGatewayTimeout with default headers values

func (*LoginGatewayTimeout) Error

func (o *LoginGatewayTimeout) Error() string

func (*LoginGatewayTimeout) GetPayload

type LoginInternalServerError

type LoginInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LoginInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLoginInternalServerError

func NewLoginInternalServerError() *LoginInternalServerError

NewLoginInternalServerError creates a LoginInternalServerError with default headers values

func (*LoginInternalServerError) Error

func (o *LoginInternalServerError) Error() string

func (*LoginInternalServerError) GetPayload

type LoginModeForbidden

type LoginModeForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LoginModeForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLoginModeForbidden

func NewLoginModeForbidden() *LoginModeForbidden

NewLoginModeForbidden creates a LoginModeForbidden with default headers values

func (*LoginModeForbidden) Error

func (o *LoginModeForbidden) Error() string

func (*LoginModeForbidden) GetPayload

type LoginModeGatewayTimeout

type LoginModeGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LoginModeGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLoginModeGatewayTimeout

func NewLoginModeGatewayTimeout() *LoginModeGatewayTimeout

NewLoginModeGatewayTimeout creates a LoginModeGatewayTimeout with default headers values

func (*LoginModeGatewayTimeout) Error

func (o *LoginModeGatewayTimeout) Error() string

func (*LoginModeGatewayTimeout) GetPayload

type LoginModeInternalServerError

type LoginModeInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LoginModeInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLoginModeInternalServerError

func NewLoginModeInternalServerError() *LoginModeInternalServerError

NewLoginModeInternalServerError creates a LoginModeInternalServerError with default headers values

func (*LoginModeInternalServerError) Error

func (*LoginModeInternalServerError) GetPayload

type LoginModeOK

type LoginModeOK struct {
	Payload *swagger_models.AAAFrontendLoginModeResponse
}
LoginModeOK describes a response with status code 200, with default header values.

A successful response.

func NewLoginModeOK

func NewLoginModeOK() *LoginModeOK

NewLoginModeOK creates a LoginModeOK with default headers values

func (*LoginModeOK) Error

func (o *LoginModeOK) Error() string

func (*LoginModeOK) GetPayload

type LoginModeParams

type LoginModeParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAAFrontendLoginModeRequest

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

LoginModeParams contains all the parameters to send to the API endpoint

for the login mode operation.

Typically these are written to a http.Request.

func NewLoginModeParams

func NewLoginModeParams() *LoginModeParams

NewLoginModeParams creates a new LoginModeParams 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 NewLoginModeParamsWithContext

func NewLoginModeParamsWithContext(ctx context.Context) *LoginModeParams

NewLoginModeParamsWithContext creates a new LoginModeParams object with the ability to set a context for a request.

func NewLoginModeParamsWithHTTPClient

func NewLoginModeParamsWithHTTPClient(client *http.Client) *LoginModeParams

NewLoginModeParamsWithHTTPClient creates a new LoginModeParams object with the ability to set a custom HTTPClient for a request.

func NewLoginModeParamsWithTimeout

func NewLoginModeParamsWithTimeout(timeout time.Duration) *LoginModeParams

NewLoginModeParamsWithTimeout creates a new LoginModeParams object with the ability to set a timeout on a request.

func (*LoginModeParams) SetBody

SetBody adds the body to the login mode params

func (*LoginModeParams) SetContext

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

SetContext adds the context to the login mode params

func (*LoginModeParams) SetDefaults

func (o *LoginModeParams) SetDefaults()

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

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

func (*LoginModeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the login mode params

func (*LoginModeParams) SetTimeout

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

SetTimeout adds the timeout to the login mode params

func (*LoginModeParams) SetXRequestID

func (o *LoginModeParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the login mode params

func (*LoginModeParams) WithBody

WithBody adds the body to the login mode params

func (*LoginModeParams) WithContext

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

WithContext adds the context to the login mode params

func (*LoginModeParams) WithDefaults

func (o *LoginModeParams) WithDefaults() *LoginModeParams

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

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

func (*LoginModeParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the login mode params

func (*LoginModeParams) WithTimeout

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

WithTimeout adds the timeout to the login mode params

func (*LoginModeParams) WithXRequestID

func (o *LoginModeParams) WithXRequestID(xRequestID *string) *LoginModeParams

WithXRequestID adds the xRequestID to the login mode params

func (*LoginModeParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type LoginModeReader

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

LoginModeReader is a Reader for the LoginMode structure.

func (*LoginModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LoginModeUnauthorized

type LoginModeUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LoginModeUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLoginModeUnauthorized

func NewLoginModeUnauthorized() *LoginModeUnauthorized

NewLoginModeUnauthorized creates a LoginModeUnauthorized with default headers values

func (*LoginModeUnauthorized) Error

func (o *LoginModeUnauthorized) Error() string

func (*LoginModeUnauthorized) GetPayload

type LoginOK

type LoginOK struct {
	Payload *swagger_models.AAAFrontendLoginResponse
}
LoginOK describes a response with status code 200, with default header values.

A successful response.

func NewLoginOK

func NewLoginOK() *LoginOK

NewLoginOK creates a LoginOK with default headers values

func (*LoginOK) Error

func (o *LoginOK) Error() string

func (*LoginOK) GetPayload

type LoginParams

type LoginParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAAFrontendLoginWithPasswordRequest

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

LoginParams contains all the parameters to send to the API endpoint

for the login operation.

Typically these are written to a http.Request.

func NewLoginParams

func NewLoginParams() *LoginParams

NewLoginParams creates a new LoginParams 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 NewLoginParamsWithContext

func NewLoginParamsWithContext(ctx context.Context) *LoginParams

NewLoginParamsWithContext creates a new LoginParams object with the ability to set a context for a request.

func NewLoginParamsWithHTTPClient

func NewLoginParamsWithHTTPClient(client *http.Client) *LoginParams

NewLoginParamsWithHTTPClient creates a new LoginParams object with the ability to set a custom HTTPClient for a request.

func NewLoginParamsWithTimeout

func NewLoginParamsWithTimeout(timeout time.Duration) *LoginParams

NewLoginParamsWithTimeout creates a new LoginParams object with the ability to set a timeout on a request.

func (*LoginParams) SetBody

SetBody adds the body to the login params

func (*LoginParams) SetContext

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

SetContext adds the context to the login params

func (*LoginParams) SetDefaults

func (o *LoginParams) SetDefaults()

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

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

func (*LoginParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the login params

func (*LoginParams) SetTimeout

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

SetTimeout adds the timeout to the login params

func (*LoginParams) SetXRequestID

func (o *LoginParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the login params

func (*LoginParams) WithBody

WithBody adds the body to the login params

func (*LoginParams) WithContext

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

WithContext adds the context to the login params

func (*LoginParams) WithDefaults

func (o *LoginParams) WithDefaults() *LoginParams

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

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

func (*LoginParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the login params

func (*LoginParams) WithTimeout

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

WithTimeout adds the timeout to the login params

func (*LoginParams) WithXRequestID

func (o *LoginParams) WithXRequestID(xRequestID *string) *LoginParams

WithXRequestID adds the xRequestID to the login params

func (*LoginParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type LoginReader

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

LoginReader is a Reader for the Login structure.

func (*LoginReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LoginUnauthorized

type LoginUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LoginUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLoginUnauthorized

func NewLoginUnauthorized() *LoginUnauthorized

NewLoginUnauthorized creates a LoginUnauthorized with default headers values

func (*LoginUnauthorized) Error

func (o *LoginUnauthorized) Error() string

func (*LoginUnauthorized) GetPayload

type LogoutForbidden

type LogoutForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
LogoutForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewLogoutForbidden

func NewLogoutForbidden() *LogoutForbidden

NewLogoutForbidden creates a LogoutForbidden with default headers values

func (*LogoutForbidden) Error

func (o *LogoutForbidden) Error() string

func (*LogoutForbidden) GetPayload

func (o *LogoutForbidden) GetPayload() *swagger_models.ZsrvResponse

type LogoutGatewayTimeout

type LogoutGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
LogoutGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewLogoutGatewayTimeout

func NewLogoutGatewayTimeout() *LogoutGatewayTimeout

NewLogoutGatewayTimeout creates a LogoutGatewayTimeout with default headers values

func (*LogoutGatewayTimeout) Error

func (o *LogoutGatewayTimeout) Error() string

func (*LogoutGatewayTimeout) GetPayload

type LogoutInternalServerError

type LogoutInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
LogoutInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewLogoutInternalServerError

func NewLogoutInternalServerError() *LogoutInternalServerError

NewLogoutInternalServerError creates a LogoutInternalServerError with default headers values

func (*LogoutInternalServerError) Error

func (o *LogoutInternalServerError) Error() string

func (*LogoutInternalServerError) GetPayload

type LogoutOK

type LogoutOK struct {
	Payload *swagger_models.AAAFrontendLogoutResponse
}
LogoutOK describes a response with status code 200, with default header values.

A successful response.

func NewLogoutOK

func NewLogoutOK() *LogoutOK

NewLogoutOK creates a LogoutOK with default headers values

func (*LogoutOK) Error

func (o *LogoutOK) Error() string

func (*LogoutOK) GetPayload

type LogoutParams

type LogoutParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body swagger_models.AAAFrontendLogoutRequest

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

LogoutParams contains all the parameters to send to the API endpoint

for the logout operation.

Typically these are written to a http.Request.

func NewLogoutParams

func NewLogoutParams() *LogoutParams

NewLogoutParams creates a new LogoutParams 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 NewLogoutParamsWithContext

func NewLogoutParamsWithContext(ctx context.Context) *LogoutParams

NewLogoutParamsWithContext creates a new LogoutParams object with the ability to set a context for a request.

func NewLogoutParamsWithHTTPClient

func NewLogoutParamsWithHTTPClient(client *http.Client) *LogoutParams

NewLogoutParamsWithHTTPClient creates a new LogoutParams object with the ability to set a custom HTTPClient for a request.

func NewLogoutParamsWithTimeout

func NewLogoutParamsWithTimeout(timeout time.Duration) *LogoutParams

NewLogoutParamsWithTimeout creates a new LogoutParams object with the ability to set a timeout on a request.

func (*LogoutParams) SetBody

SetBody adds the body to the logout params

func (*LogoutParams) SetContext

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

SetContext adds the context to the logout params

func (*LogoutParams) SetDefaults

func (o *LogoutParams) SetDefaults()

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

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

func (*LogoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the logout params

func (*LogoutParams) SetTimeout

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

SetTimeout adds the timeout to the logout params

func (*LogoutParams) SetXRequestID

func (o *LogoutParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the logout params

func (*LogoutParams) WithBody

WithBody adds the body to the logout params

func (*LogoutParams) WithContext

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

WithContext adds the context to the logout params

func (*LogoutParams) WithDefaults

func (o *LogoutParams) WithDefaults() *LogoutParams

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

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

func (*LogoutParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the logout params

func (*LogoutParams) WithTimeout

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

WithTimeout adds the timeout to the logout params

func (*LogoutParams) WithXRequestID

func (o *LogoutParams) WithXRequestID(xRequestID *string) *LogoutParams

WithXRequestID adds the xRequestID to the logout params

func (*LogoutParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type LogoutReader

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

LogoutReader is a Reader for the Logout structure.

func (*LogoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LogoutUnauthorized

type LogoutUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
LogoutUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewLogoutUnauthorized

func NewLogoutUnauthorized() *LogoutUnauthorized

NewLogoutUnauthorized creates a LogoutUnauthorized with default headers values

func (*LogoutUnauthorized) Error

func (o *LogoutUnauthorized) Error() string

func (*LogoutUnauthorized) GetPayload

type QueryAuthProfilesBadRequest

type QueryAuthProfilesBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
QueryAuthProfilesBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of invalid value of filter parameters.

func NewQueryAuthProfilesBadRequest

func NewQueryAuthProfilesBadRequest() *QueryAuthProfilesBadRequest

NewQueryAuthProfilesBadRequest creates a QueryAuthProfilesBadRequest with default headers values

func (*QueryAuthProfilesBadRequest) Error

func (*QueryAuthProfilesBadRequest) GetPayload

type QueryAuthProfilesForbidden

type QueryAuthProfilesForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryAuthProfilesForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryAuthProfilesForbidden

func NewQueryAuthProfilesForbidden() *QueryAuthProfilesForbidden

NewQueryAuthProfilesForbidden creates a QueryAuthProfilesForbidden with default headers values

func (*QueryAuthProfilesForbidden) Error

func (*QueryAuthProfilesForbidden) GetPayload

type QueryAuthProfilesGatewayTimeout

type QueryAuthProfilesGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryAuthProfilesGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryAuthProfilesGatewayTimeout

func NewQueryAuthProfilesGatewayTimeout() *QueryAuthProfilesGatewayTimeout

NewQueryAuthProfilesGatewayTimeout creates a QueryAuthProfilesGatewayTimeout with default headers values

func (*QueryAuthProfilesGatewayTimeout) Error

func (*QueryAuthProfilesGatewayTimeout) GetPayload

type QueryAuthProfilesInternalServerError

type QueryAuthProfilesInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryAuthProfilesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryAuthProfilesInternalServerError

func NewQueryAuthProfilesInternalServerError() *QueryAuthProfilesInternalServerError

NewQueryAuthProfilesInternalServerError creates a QueryAuthProfilesInternalServerError with default headers values

func (*QueryAuthProfilesInternalServerError) Error

func (*QueryAuthProfilesInternalServerError) GetPayload

type QueryAuthProfilesOK

type QueryAuthProfilesOK struct {
	Payload *swagger_models.CrudResponse
}
QueryAuthProfilesOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryAuthProfilesOK

func NewQueryAuthProfilesOK() *QueryAuthProfilesOK

NewQueryAuthProfilesOK creates a QueryAuthProfilesOK with default headers values

func (*QueryAuthProfilesOK) Error

func (o *QueryAuthProfilesOK) Error() string

func (*QueryAuthProfilesOK) GetPayload

type QueryAuthProfilesParams

type QueryAuthProfilesParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// FilterAll.
	//
	// Format: boolean
	FilterAll *bool

	// FilterEntpstate.
	FilterEntpstate *string

	// FilterHubspotid.
	FilterHubspotid *string

	// FilterNamePattern.
	FilterNamePattern *string

	// FilterProjectid.
	FilterProjectid []string

	// FilterSfdcid.
	FilterSfdcid *string

	// FilterUserstate.
	FilterUserstate *string

	/* NextOrderBy.

	   OrderBy helps in sorting the list response
	*/
	NextOrderBy *string

	/* NextPageNum.

	   Page Number

	   Format: int64
	*/
	NextPageNum *int64

	/* NextPageSize.

	   Defines the page size

	   Format: int64
	*/
	NextPageSize *int64

	/* NextPageToken.

	   Page Token
	*/
	NextPageToken *string

	/* NextTotalPages.

	   Total number of pages to be fetched.

	   Format: int64
	*/
	NextTotalPages *int64

	// Summary.
	//
	// Format: boolean
	Summary *bool

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

QueryAuthProfilesParams contains all the parameters to send to the API endpoint

for the query auth profiles operation.

Typically these are written to a http.Request.

func NewQueryAuthProfilesParams

func NewQueryAuthProfilesParams() *QueryAuthProfilesParams

NewQueryAuthProfilesParams creates a new QueryAuthProfilesParams 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 NewQueryAuthProfilesParamsWithContext

func NewQueryAuthProfilesParamsWithContext(ctx context.Context) *QueryAuthProfilesParams

NewQueryAuthProfilesParamsWithContext creates a new QueryAuthProfilesParams object with the ability to set a context for a request.

func NewQueryAuthProfilesParamsWithHTTPClient

func NewQueryAuthProfilesParamsWithHTTPClient(client *http.Client) *QueryAuthProfilesParams

NewQueryAuthProfilesParamsWithHTTPClient creates a new QueryAuthProfilesParams object with the ability to set a custom HTTPClient for a request.

func NewQueryAuthProfilesParamsWithTimeout

func NewQueryAuthProfilesParamsWithTimeout(timeout time.Duration) *QueryAuthProfilesParams

NewQueryAuthProfilesParamsWithTimeout creates a new QueryAuthProfilesParams object with the ability to set a timeout on a request.

func (*QueryAuthProfilesParams) SetContext

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

SetContext adds the context to the query auth profiles params

func (*QueryAuthProfilesParams) SetDefaults

func (o *QueryAuthProfilesParams) SetDefaults()

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

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

func (*QueryAuthProfilesParams) SetFilterAll

func (o *QueryAuthProfilesParams) SetFilterAll(filterAll *bool)

SetFilterAll adds the filterAll to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterEntpstate

func (o *QueryAuthProfilesParams) SetFilterEntpstate(filterEntpstate *string)

SetFilterEntpstate adds the filterEntpstate to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterHubspotid

func (o *QueryAuthProfilesParams) SetFilterHubspotid(filterHubspotid *string)

SetFilterHubspotid adds the filterHubspotid to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterNamePattern

func (o *QueryAuthProfilesParams) SetFilterNamePattern(filterNamePattern *string)

SetFilterNamePattern adds the filterNamePattern to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterProjectid

func (o *QueryAuthProfilesParams) SetFilterProjectid(filterProjectid []string)

SetFilterProjectid adds the filterProjectid to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterSfdcid

func (o *QueryAuthProfilesParams) SetFilterSfdcid(filterSfdcid *string)

SetFilterSfdcid adds the filterSfdcid to the query auth profiles params

func (*QueryAuthProfilesParams) SetFilterUserstate

func (o *QueryAuthProfilesParams) SetFilterUserstate(filterUserstate *string)

SetFilterUserstate adds the filterUserstate to the query auth profiles params

func (*QueryAuthProfilesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query auth profiles params

func (*QueryAuthProfilesParams) SetNextOrderBy

func (o *QueryAuthProfilesParams) SetNextOrderBy(nextOrderBy *string)

SetNextOrderBy adds the nextOrderBy to the query auth profiles params

func (*QueryAuthProfilesParams) SetNextPageNum

func (o *QueryAuthProfilesParams) SetNextPageNum(nextPageNum *int64)

SetNextPageNum adds the nextPageNum to the query auth profiles params

func (*QueryAuthProfilesParams) SetNextPageSize

func (o *QueryAuthProfilesParams) SetNextPageSize(nextPageSize *int64)

SetNextPageSize adds the nextPageSize to the query auth profiles params

func (*QueryAuthProfilesParams) SetNextPageToken

func (o *QueryAuthProfilesParams) SetNextPageToken(nextPageToken *string)

SetNextPageToken adds the nextPageToken to the query auth profiles params

func (*QueryAuthProfilesParams) SetNextTotalPages

func (o *QueryAuthProfilesParams) SetNextTotalPages(nextTotalPages *int64)

SetNextTotalPages adds the nextTotalPages to the query auth profiles params

func (*QueryAuthProfilesParams) SetSummary

func (o *QueryAuthProfilesParams) SetSummary(summary *bool)

SetSummary adds the summary to the query auth profiles params

func (*QueryAuthProfilesParams) SetTimeout

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

SetTimeout adds the timeout to the query auth profiles params

func (*QueryAuthProfilesParams) SetXRequestID

func (o *QueryAuthProfilesParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query auth profiles params

func (*QueryAuthProfilesParams) WithContext

WithContext adds the context to the query auth profiles params

func (*QueryAuthProfilesParams) WithDefaults

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

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

func (*QueryAuthProfilesParams) WithFilterAll

func (o *QueryAuthProfilesParams) WithFilterAll(filterAll *bool) *QueryAuthProfilesParams

WithFilterAll adds the filterAll to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterEntpstate

func (o *QueryAuthProfilesParams) WithFilterEntpstate(filterEntpstate *string) *QueryAuthProfilesParams

WithFilterEntpstate adds the filterEntpstate to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterHubspotid

func (o *QueryAuthProfilesParams) WithFilterHubspotid(filterHubspotid *string) *QueryAuthProfilesParams

WithFilterHubspotid adds the filterHubspotid to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterNamePattern

func (o *QueryAuthProfilesParams) WithFilterNamePattern(filterNamePattern *string) *QueryAuthProfilesParams

WithFilterNamePattern adds the filterNamePattern to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterProjectid

func (o *QueryAuthProfilesParams) WithFilterProjectid(filterProjectid []string) *QueryAuthProfilesParams

WithFilterProjectid adds the filterProjectid to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterSfdcid

func (o *QueryAuthProfilesParams) WithFilterSfdcid(filterSfdcid *string) *QueryAuthProfilesParams

WithFilterSfdcid adds the filterSfdcid to the query auth profiles params

func (*QueryAuthProfilesParams) WithFilterUserstate

func (o *QueryAuthProfilesParams) WithFilterUserstate(filterUserstate *string) *QueryAuthProfilesParams

WithFilterUserstate adds the filterUserstate to the query auth profiles params

func (*QueryAuthProfilesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query auth profiles params

func (*QueryAuthProfilesParams) WithNextOrderBy

func (o *QueryAuthProfilesParams) WithNextOrderBy(nextOrderBy *string) *QueryAuthProfilesParams

WithNextOrderBy adds the nextOrderBy to the query auth profiles params

func (*QueryAuthProfilesParams) WithNextPageNum

func (o *QueryAuthProfilesParams) WithNextPageNum(nextPageNum *int64) *QueryAuthProfilesParams

WithNextPageNum adds the nextPageNum to the query auth profiles params

func (*QueryAuthProfilesParams) WithNextPageSize

func (o *QueryAuthProfilesParams) WithNextPageSize(nextPageSize *int64) *QueryAuthProfilesParams

WithNextPageSize adds the nextPageSize to the query auth profiles params

func (*QueryAuthProfilesParams) WithNextPageToken

func (o *QueryAuthProfilesParams) WithNextPageToken(nextPageToken *string) *QueryAuthProfilesParams

WithNextPageToken adds the nextPageToken to the query auth profiles params

func (*QueryAuthProfilesParams) WithNextTotalPages

func (o *QueryAuthProfilesParams) WithNextTotalPages(nextTotalPages *int64) *QueryAuthProfilesParams

WithNextTotalPages adds the nextTotalPages to the query auth profiles params

func (*QueryAuthProfilesParams) WithSummary

func (o *QueryAuthProfilesParams) WithSummary(summary *bool) *QueryAuthProfilesParams

WithSummary adds the summary to the query auth profiles params

func (*QueryAuthProfilesParams) WithTimeout

WithTimeout adds the timeout to the query auth profiles params

func (*QueryAuthProfilesParams) WithXRequestID

func (o *QueryAuthProfilesParams) WithXRequestID(xRequestID *string) *QueryAuthProfilesParams

WithXRequestID adds the xRequestID to the query auth profiles params

func (*QueryAuthProfilesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryAuthProfilesReader

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

QueryAuthProfilesReader is a Reader for the QueryAuthProfiles structure.

func (*QueryAuthProfilesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryAuthProfilesUnauthorized

type QueryAuthProfilesUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryAuthProfilesUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryAuthProfilesUnauthorized

func NewQueryAuthProfilesUnauthorized() *QueryAuthProfilesUnauthorized

NewQueryAuthProfilesUnauthorized creates a QueryAuthProfilesUnauthorized with default headers values

func (*QueryAuthProfilesUnauthorized) Error

func (*QueryAuthProfilesUnauthorized) GetPayload

type QueryEnterprisesBadRequest

type QueryEnterprisesBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
QueryEnterprisesBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of invalid value of filter parameters.

func NewQueryEnterprisesBadRequest

func NewQueryEnterprisesBadRequest() *QueryEnterprisesBadRequest

NewQueryEnterprisesBadRequest creates a QueryEnterprisesBadRequest with default headers values

func (*QueryEnterprisesBadRequest) Error

func (*QueryEnterprisesBadRequest) GetPayload

type QueryEnterprisesForbidden

type QueryEnterprisesForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryEnterprisesForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryEnterprisesForbidden

func NewQueryEnterprisesForbidden() *QueryEnterprisesForbidden

NewQueryEnterprisesForbidden creates a QueryEnterprisesForbidden with default headers values

func (*QueryEnterprisesForbidden) Error

func (o *QueryEnterprisesForbidden) Error() string

func (*QueryEnterprisesForbidden) GetPayload

type QueryEnterprisesGatewayTimeout

type QueryEnterprisesGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryEnterprisesGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryEnterprisesGatewayTimeout

func NewQueryEnterprisesGatewayTimeout() *QueryEnterprisesGatewayTimeout

NewQueryEnterprisesGatewayTimeout creates a QueryEnterprisesGatewayTimeout with default headers values

func (*QueryEnterprisesGatewayTimeout) Error

func (*QueryEnterprisesGatewayTimeout) GetPayload

type QueryEnterprisesInternalServerError

type QueryEnterprisesInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryEnterprisesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryEnterprisesInternalServerError

func NewQueryEnterprisesInternalServerError() *QueryEnterprisesInternalServerError

NewQueryEnterprisesInternalServerError creates a QueryEnterprisesInternalServerError with default headers values

func (*QueryEnterprisesInternalServerError) Error

func (*QueryEnterprisesInternalServerError) GetPayload

type QueryEnterprisesOK

type QueryEnterprisesOK struct {
	Payload *swagger_models.CrudResponse
}
QueryEnterprisesOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryEnterprisesOK

func NewQueryEnterprisesOK() *QueryEnterprisesOK

NewQueryEnterprisesOK creates a QueryEnterprisesOK with default headers values

func (*QueryEnterprisesOK) Error

func (o *QueryEnterprisesOK) Error() string

func (*QueryEnterprisesOK) GetPayload

type QueryEnterprisesParams

type QueryEnterprisesParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// FilterAll.
	//
	// Format: boolean
	FilterAll *bool

	// FilterEntpstate.
	FilterEntpstate *string

	// FilterHubspotid.
	FilterHubspotid *string

	// FilterNamePattern.
	FilterNamePattern *string

	// FilterProjectid.
	FilterProjectid []string

	// FilterSfdcid.
	FilterSfdcid *string

	// FilterUserstate.
	FilterUserstate *string

	/* NextOrderBy.

	   OrderBy helps in sorting the list response
	*/
	NextOrderBy *string

	/* NextPageNum.

	   Page Number

	   Format: int64
	*/
	NextPageNum *int64

	/* NextPageSize.

	   Defines the page size

	   Format: int64
	*/
	NextPageSize *int64

	/* NextPageToken.

	   Page Token
	*/
	NextPageToken *string

	/* NextTotalPages.

	   Total number of pages to be fetched.

	   Format: int64
	*/
	NextTotalPages *int64

	// Summary.
	//
	// Format: boolean
	Summary *bool

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

QueryEnterprisesParams contains all the parameters to send to the API endpoint

for the query enterprises operation.

Typically these are written to a http.Request.

func NewQueryEnterprisesParams

func NewQueryEnterprisesParams() *QueryEnterprisesParams

NewQueryEnterprisesParams creates a new QueryEnterprisesParams 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 NewQueryEnterprisesParamsWithContext

func NewQueryEnterprisesParamsWithContext(ctx context.Context) *QueryEnterprisesParams

NewQueryEnterprisesParamsWithContext creates a new QueryEnterprisesParams object with the ability to set a context for a request.

func NewQueryEnterprisesParamsWithHTTPClient

func NewQueryEnterprisesParamsWithHTTPClient(client *http.Client) *QueryEnterprisesParams

NewQueryEnterprisesParamsWithHTTPClient creates a new QueryEnterprisesParams object with the ability to set a custom HTTPClient for a request.

func NewQueryEnterprisesParamsWithTimeout

func NewQueryEnterprisesParamsWithTimeout(timeout time.Duration) *QueryEnterprisesParams

NewQueryEnterprisesParamsWithTimeout creates a new QueryEnterprisesParams object with the ability to set a timeout on a request.

func (*QueryEnterprisesParams) SetContext

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

SetContext adds the context to the query enterprises params

func (*QueryEnterprisesParams) SetDefaults

func (o *QueryEnterprisesParams) SetDefaults()

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

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

func (*QueryEnterprisesParams) SetFilterAll

func (o *QueryEnterprisesParams) SetFilterAll(filterAll *bool)

SetFilterAll adds the filterAll to the query enterprises params

func (*QueryEnterprisesParams) SetFilterEntpstate

func (o *QueryEnterprisesParams) SetFilterEntpstate(filterEntpstate *string)

SetFilterEntpstate adds the filterEntpstate to the query enterprises params

func (*QueryEnterprisesParams) SetFilterHubspotid

func (o *QueryEnterprisesParams) SetFilterHubspotid(filterHubspotid *string)

SetFilterHubspotid adds the filterHubspotid to the query enterprises params

func (*QueryEnterprisesParams) SetFilterNamePattern

func (o *QueryEnterprisesParams) SetFilterNamePattern(filterNamePattern *string)

SetFilterNamePattern adds the filterNamePattern to the query enterprises params

func (*QueryEnterprisesParams) SetFilterProjectid

func (o *QueryEnterprisesParams) SetFilterProjectid(filterProjectid []string)

SetFilterProjectid adds the filterProjectid to the query enterprises params

func (*QueryEnterprisesParams) SetFilterSfdcid

func (o *QueryEnterprisesParams) SetFilterSfdcid(filterSfdcid *string)

SetFilterSfdcid adds the filterSfdcid to the query enterprises params

func (*QueryEnterprisesParams) SetFilterUserstate

func (o *QueryEnterprisesParams) SetFilterUserstate(filterUserstate *string)

SetFilterUserstate adds the filterUserstate to the query enterprises params

func (*QueryEnterprisesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query enterprises params

func (*QueryEnterprisesParams) SetNextOrderBy

func (o *QueryEnterprisesParams) SetNextOrderBy(nextOrderBy *string)

SetNextOrderBy adds the nextOrderBy to the query enterprises params

func (*QueryEnterprisesParams) SetNextPageNum

func (o *QueryEnterprisesParams) SetNextPageNum(nextPageNum *int64)

SetNextPageNum adds the nextPageNum to the query enterprises params

func (*QueryEnterprisesParams) SetNextPageSize

func (o *QueryEnterprisesParams) SetNextPageSize(nextPageSize *int64)

SetNextPageSize adds the nextPageSize to the query enterprises params

func (*QueryEnterprisesParams) SetNextPageToken

func (o *QueryEnterprisesParams) SetNextPageToken(nextPageToken *string)

SetNextPageToken adds the nextPageToken to the query enterprises params

func (*QueryEnterprisesParams) SetNextTotalPages

func (o *QueryEnterprisesParams) SetNextTotalPages(nextTotalPages *int64)

SetNextTotalPages adds the nextTotalPages to the query enterprises params

func (*QueryEnterprisesParams) SetSummary

func (o *QueryEnterprisesParams) SetSummary(summary *bool)

SetSummary adds the summary to the query enterprises params

func (*QueryEnterprisesParams) SetTimeout

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

SetTimeout adds the timeout to the query enterprises params

func (*QueryEnterprisesParams) SetXRequestID

func (o *QueryEnterprisesParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query enterprises params

func (*QueryEnterprisesParams) WithContext

WithContext adds the context to the query enterprises params

func (*QueryEnterprisesParams) WithDefaults

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

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

func (*QueryEnterprisesParams) WithFilterAll

func (o *QueryEnterprisesParams) WithFilterAll(filterAll *bool) *QueryEnterprisesParams

WithFilterAll adds the filterAll to the query enterprises params

func (*QueryEnterprisesParams) WithFilterEntpstate

func (o *QueryEnterprisesParams) WithFilterEntpstate(filterEntpstate *string) *QueryEnterprisesParams

WithFilterEntpstate adds the filterEntpstate to the query enterprises params

func (*QueryEnterprisesParams) WithFilterHubspotid

func (o *QueryEnterprisesParams) WithFilterHubspotid(filterHubspotid *string) *QueryEnterprisesParams

WithFilterHubspotid adds the filterHubspotid to the query enterprises params

func (*QueryEnterprisesParams) WithFilterNamePattern

func (o *QueryEnterprisesParams) WithFilterNamePattern(filterNamePattern *string) *QueryEnterprisesParams

WithFilterNamePattern adds the filterNamePattern to the query enterprises params

func (*QueryEnterprisesParams) WithFilterProjectid

func (o *QueryEnterprisesParams) WithFilterProjectid(filterProjectid []string) *QueryEnterprisesParams

WithFilterProjectid adds the filterProjectid to the query enterprises params

func (*QueryEnterprisesParams) WithFilterSfdcid

func (o *QueryEnterprisesParams) WithFilterSfdcid(filterSfdcid *string) *QueryEnterprisesParams

WithFilterSfdcid adds the filterSfdcid to the query enterprises params

func (*QueryEnterprisesParams) WithFilterUserstate

func (o *QueryEnterprisesParams) WithFilterUserstate(filterUserstate *string) *QueryEnterprisesParams

WithFilterUserstate adds the filterUserstate to the query enterprises params

func (*QueryEnterprisesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query enterprises params

func (*QueryEnterprisesParams) WithNextOrderBy

func (o *QueryEnterprisesParams) WithNextOrderBy(nextOrderBy *string) *QueryEnterprisesParams

WithNextOrderBy adds the nextOrderBy to the query enterprises params

func (*QueryEnterprisesParams) WithNextPageNum

func (o *QueryEnterprisesParams) WithNextPageNum(nextPageNum *int64) *QueryEnterprisesParams

WithNextPageNum adds the nextPageNum to the query enterprises params

func (*QueryEnterprisesParams) WithNextPageSize

func (o *QueryEnterprisesParams) WithNextPageSize(nextPageSize *int64) *QueryEnterprisesParams

WithNextPageSize adds the nextPageSize to the query enterprises params

func (*QueryEnterprisesParams) WithNextPageToken

func (o *QueryEnterprisesParams) WithNextPageToken(nextPageToken *string) *QueryEnterprisesParams

WithNextPageToken adds the nextPageToken to the query enterprises params

func (*QueryEnterprisesParams) WithNextTotalPages

func (o *QueryEnterprisesParams) WithNextTotalPages(nextTotalPages *int64) *QueryEnterprisesParams

WithNextTotalPages adds the nextTotalPages to the query enterprises params

func (*QueryEnterprisesParams) WithSummary

func (o *QueryEnterprisesParams) WithSummary(summary *bool) *QueryEnterprisesParams

WithSummary adds the summary to the query enterprises params

func (*QueryEnterprisesParams) WithTimeout

WithTimeout adds the timeout to the query enterprises params

func (*QueryEnterprisesParams) WithXRequestID

func (o *QueryEnterprisesParams) WithXRequestID(xRequestID *string) *QueryEnterprisesParams

WithXRequestID adds the xRequestID to the query enterprises params

func (*QueryEnterprisesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryEnterprisesReader

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

QueryEnterprisesReader is a Reader for the QueryEnterprises structure.

func (*QueryEnterprisesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryEnterprisesUnauthorized

type QueryEnterprisesUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryEnterprisesUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryEnterprisesUnauthorized

func NewQueryEnterprisesUnauthorized() *QueryEnterprisesUnauthorized

NewQueryEnterprisesUnauthorized creates a QueryEnterprisesUnauthorized with default headers values

func (*QueryEnterprisesUnauthorized) Error

func (*QueryEnterprisesUnauthorized) GetPayload

type QueryRealmsBadRequest

type QueryRealmsBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRealmsBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of invalid value of filter parameters.

func NewQueryRealmsBadRequest

func NewQueryRealmsBadRequest() *QueryRealmsBadRequest

NewQueryRealmsBadRequest creates a QueryRealmsBadRequest with default headers values

func (*QueryRealmsBadRequest) Error

func (o *QueryRealmsBadRequest) Error() string

func (*QueryRealmsBadRequest) GetPayload

type QueryRealmsForbidden

type QueryRealmsForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRealmsForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryRealmsForbidden

func NewQueryRealmsForbidden() *QueryRealmsForbidden

NewQueryRealmsForbidden creates a QueryRealmsForbidden with default headers values

func (*QueryRealmsForbidden) Error

func (o *QueryRealmsForbidden) Error() string

func (*QueryRealmsForbidden) GetPayload

type QueryRealmsGatewayTimeout

type QueryRealmsGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRealmsGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryRealmsGatewayTimeout

func NewQueryRealmsGatewayTimeout() *QueryRealmsGatewayTimeout

NewQueryRealmsGatewayTimeout creates a QueryRealmsGatewayTimeout with default headers values

func (*QueryRealmsGatewayTimeout) Error

func (o *QueryRealmsGatewayTimeout) Error() string

func (*QueryRealmsGatewayTimeout) GetPayload

type QueryRealmsInternalServerError

type QueryRealmsInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRealmsInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryRealmsInternalServerError

func NewQueryRealmsInternalServerError() *QueryRealmsInternalServerError

NewQueryRealmsInternalServerError creates a QueryRealmsInternalServerError with default headers values

func (*QueryRealmsInternalServerError) Error

func (*QueryRealmsInternalServerError) GetPayload

type QueryRealmsOK

type QueryRealmsOK struct {
	Payload *swagger_models.CrudResponse
}
QueryRealmsOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryRealmsOK

func NewQueryRealmsOK() *QueryRealmsOK

NewQueryRealmsOK creates a QueryRealmsOK with default headers values

func (*QueryRealmsOK) Error

func (o *QueryRealmsOK) Error() string

func (*QueryRealmsOK) GetPayload

func (o *QueryRealmsOK) GetPayload() *swagger_models.CrudResponse

type QueryRealmsParams

type QueryRealmsParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// FilterAll.
	//
	// Format: boolean
	FilterAll *bool

	// FilterEntpstate.
	FilterEntpstate *string

	// FilterHubspotid.
	FilterHubspotid *string

	// FilterNamePattern.
	FilterNamePattern *string

	// FilterProjectid.
	FilterProjectid []string

	// FilterSfdcid.
	FilterSfdcid *string

	// FilterUserstate.
	FilterUserstate *string

	/* NextOrderBy.

	   OrderBy helps in sorting the list response
	*/
	NextOrderBy *string

	/* NextPageNum.

	   Page Number

	   Format: int64
	*/
	NextPageNum *int64

	/* NextPageSize.

	   Defines the page size

	   Format: int64
	*/
	NextPageSize *int64

	/* NextPageToken.

	   Page Token
	*/
	NextPageToken *string

	/* NextTotalPages.

	   Total number of pages to be fetched.

	   Format: int64
	*/
	NextTotalPages *int64

	// Summary.
	//
	// Format: boolean
	Summary *bool

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

QueryRealmsParams contains all the parameters to send to the API endpoint

for the query realms operation.

Typically these are written to a http.Request.

func NewQueryRealmsParams

func NewQueryRealmsParams() *QueryRealmsParams

NewQueryRealmsParams creates a new QueryRealmsParams 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 NewQueryRealmsParamsWithContext

func NewQueryRealmsParamsWithContext(ctx context.Context) *QueryRealmsParams

NewQueryRealmsParamsWithContext creates a new QueryRealmsParams object with the ability to set a context for a request.

func NewQueryRealmsParamsWithHTTPClient

func NewQueryRealmsParamsWithHTTPClient(client *http.Client) *QueryRealmsParams

NewQueryRealmsParamsWithHTTPClient creates a new QueryRealmsParams object with the ability to set a custom HTTPClient for a request.

func NewQueryRealmsParamsWithTimeout

func NewQueryRealmsParamsWithTimeout(timeout time.Duration) *QueryRealmsParams

NewQueryRealmsParamsWithTimeout creates a new QueryRealmsParams object with the ability to set a timeout on a request.

func (*QueryRealmsParams) SetContext

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

SetContext adds the context to the query realms params

func (*QueryRealmsParams) SetDefaults

func (o *QueryRealmsParams) SetDefaults()

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

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

func (*QueryRealmsParams) SetFilterAll

func (o *QueryRealmsParams) SetFilterAll(filterAll *bool)

SetFilterAll adds the filterAll to the query realms params

func (*QueryRealmsParams) SetFilterEntpstate

func (o *QueryRealmsParams) SetFilterEntpstate(filterEntpstate *string)

SetFilterEntpstate adds the filterEntpstate to the query realms params

func (*QueryRealmsParams) SetFilterHubspotid

func (o *QueryRealmsParams) SetFilterHubspotid(filterHubspotid *string)

SetFilterHubspotid adds the filterHubspotid to the query realms params

func (*QueryRealmsParams) SetFilterNamePattern

func (o *QueryRealmsParams) SetFilterNamePattern(filterNamePattern *string)

SetFilterNamePattern adds the filterNamePattern to the query realms params

func (*QueryRealmsParams) SetFilterProjectid

func (o *QueryRealmsParams) SetFilterProjectid(filterProjectid []string)

SetFilterProjectid adds the filterProjectid to the query realms params

func (*QueryRealmsParams) SetFilterSfdcid

func (o *QueryRealmsParams) SetFilterSfdcid(filterSfdcid *string)

SetFilterSfdcid adds the filterSfdcid to the query realms params

func (*QueryRealmsParams) SetFilterUserstate

func (o *QueryRealmsParams) SetFilterUserstate(filterUserstate *string)

SetFilterUserstate adds the filterUserstate to the query realms params

func (*QueryRealmsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query realms params

func (*QueryRealmsParams) SetNextOrderBy

func (o *QueryRealmsParams) SetNextOrderBy(nextOrderBy *string)

SetNextOrderBy adds the nextOrderBy to the query realms params

func (*QueryRealmsParams) SetNextPageNum

func (o *QueryRealmsParams) SetNextPageNum(nextPageNum *int64)

SetNextPageNum adds the nextPageNum to the query realms params

func (*QueryRealmsParams) SetNextPageSize

func (o *QueryRealmsParams) SetNextPageSize(nextPageSize *int64)

SetNextPageSize adds the nextPageSize to the query realms params

func (*QueryRealmsParams) SetNextPageToken

func (o *QueryRealmsParams) SetNextPageToken(nextPageToken *string)

SetNextPageToken adds the nextPageToken to the query realms params

func (*QueryRealmsParams) SetNextTotalPages

func (o *QueryRealmsParams) SetNextTotalPages(nextTotalPages *int64)

SetNextTotalPages adds the nextTotalPages to the query realms params

func (*QueryRealmsParams) SetSummary

func (o *QueryRealmsParams) SetSummary(summary *bool)

SetSummary adds the summary to the query realms params

func (*QueryRealmsParams) SetTimeout

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

SetTimeout adds the timeout to the query realms params

func (*QueryRealmsParams) SetXRequestID

func (o *QueryRealmsParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query realms params

func (*QueryRealmsParams) WithContext

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

WithContext adds the context to the query realms params

func (*QueryRealmsParams) WithDefaults

func (o *QueryRealmsParams) WithDefaults() *QueryRealmsParams

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

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

func (*QueryRealmsParams) WithFilterAll

func (o *QueryRealmsParams) WithFilterAll(filterAll *bool) *QueryRealmsParams

WithFilterAll adds the filterAll to the query realms params

func (*QueryRealmsParams) WithFilterEntpstate

func (o *QueryRealmsParams) WithFilterEntpstate(filterEntpstate *string) *QueryRealmsParams

WithFilterEntpstate adds the filterEntpstate to the query realms params

func (*QueryRealmsParams) WithFilterHubspotid

func (o *QueryRealmsParams) WithFilterHubspotid(filterHubspotid *string) *QueryRealmsParams

WithFilterHubspotid adds the filterHubspotid to the query realms params

func (*QueryRealmsParams) WithFilterNamePattern

func (o *QueryRealmsParams) WithFilterNamePattern(filterNamePattern *string) *QueryRealmsParams

WithFilterNamePattern adds the filterNamePattern to the query realms params

func (*QueryRealmsParams) WithFilterProjectid

func (o *QueryRealmsParams) WithFilterProjectid(filterProjectid []string) *QueryRealmsParams

WithFilterProjectid adds the filterProjectid to the query realms params

func (*QueryRealmsParams) WithFilterSfdcid

func (o *QueryRealmsParams) WithFilterSfdcid(filterSfdcid *string) *QueryRealmsParams

WithFilterSfdcid adds the filterSfdcid to the query realms params

func (*QueryRealmsParams) WithFilterUserstate

func (o *QueryRealmsParams) WithFilterUserstate(filterUserstate *string) *QueryRealmsParams

WithFilterUserstate adds the filterUserstate to the query realms params

func (*QueryRealmsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query realms params

func (*QueryRealmsParams) WithNextOrderBy

func (o *QueryRealmsParams) WithNextOrderBy(nextOrderBy *string) *QueryRealmsParams

WithNextOrderBy adds the nextOrderBy to the query realms params

func (*QueryRealmsParams) WithNextPageNum

func (o *QueryRealmsParams) WithNextPageNum(nextPageNum *int64) *QueryRealmsParams

WithNextPageNum adds the nextPageNum to the query realms params

func (*QueryRealmsParams) WithNextPageSize

func (o *QueryRealmsParams) WithNextPageSize(nextPageSize *int64) *QueryRealmsParams

WithNextPageSize adds the nextPageSize to the query realms params

func (*QueryRealmsParams) WithNextPageToken

func (o *QueryRealmsParams) WithNextPageToken(nextPageToken *string) *QueryRealmsParams

WithNextPageToken adds the nextPageToken to the query realms params

func (*QueryRealmsParams) WithNextTotalPages

func (o *QueryRealmsParams) WithNextTotalPages(nextTotalPages *int64) *QueryRealmsParams

WithNextTotalPages adds the nextTotalPages to the query realms params

func (*QueryRealmsParams) WithSummary

func (o *QueryRealmsParams) WithSummary(summary *bool) *QueryRealmsParams

WithSummary adds the summary to the query realms params

func (*QueryRealmsParams) WithTimeout

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

WithTimeout adds the timeout to the query realms params

func (*QueryRealmsParams) WithXRequestID

func (o *QueryRealmsParams) WithXRequestID(xRequestID *string) *QueryRealmsParams

WithXRequestID adds the xRequestID to the query realms params

func (*QueryRealmsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type QueryRealmsReader

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

QueryRealmsReader is a Reader for the QueryRealms structure.

func (*QueryRealmsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryRealmsUnauthorized

type QueryRealmsUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRealmsUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryRealmsUnauthorized

func NewQueryRealmsUnauthorized() *QueryRealmsUnauthorized

NewQueryRealmsUnauthorized creates a QueryRealmsUnauthorized with default headers values

func (*QueryRealmsUnauthorized) Error

func (o *QueryRealmsUnauthorized) Error() string

func (*QueryRealmsUnauthorized) GetPayload

type QueryRolesBadRequest

type QueryRolesBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRolesBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of invalid value of filter parameters.

func NewQueryRolesBadRequest

func NewQueryRolesBadRequest() *QueryRolesBadRequest

NewQueryRolesBadRequest creates a QueryRolesBadRequest with default headers values

func (*QueryRolesBadRequest) Error

func (o *QueryRolesBadRequest) Error() string

func (*QueryRolesBadRequest) GetPayload

type QueryRolesForbidden

type QueryRolesForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRolesForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryRolesForbidden

func NewQueryRolesForbidden() *QueryRolesForbidden

NewQueryRolesForbidden creates a QueryRolesForbidden with default headers values

func (*QueryRolesForbidden) Error

func (o *QueryRolesForbidden) Error() string

func (*QueryRolesForbidden) GetPayload

type QueryRolesGatewayTimeout

type QueryRolesGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRolesGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryRolesGatewayTimeout

func NewQueryRolesGatewayTimeout() *QueryRolesGatewayTimeout

NewQueryRolesGatewayTimeout creates a QueryRolesGatewayTimeout with default headers values

func (*QueryRolesGatewayTimeout) Error

func (o *QueryRolesGatewayTimeout) Error() string

func (*QueryRolesGatewayTimeout) GetPayload

type QueryRolesInternalServerError

type QueryRolesInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRolesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryRolesInternalServerError

func NewQueryRolesInternalServerError() *QueryRolesInternalServerError

NewQueryRolesInternalServerError creates a QueryRolesInternalServerError with default headers values

func (*QueryRolesInternalServerError) Error

func (*QueryRolesInternalServerError) GetPayload

type QueryRolesOK

type QueryRolesOK struct {
	Payload *swagger_models.CrudResponse
}
QueryRolesOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryRolesOK

func NewQueryRolesOK() *QueryRolesOK

NewQueryRolesOK creates a QueryRolesOK with default headers values

func (*QueryRolesOK) Error

func (o *QueryRolesOK) Error() string

func (*QueryRolesOK) GetPayload

func (o *QueryRolesOK) GetPayload() *swagger_models.CrudResponse

type QueryRolesParams

type QueryRolesParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// FilterAll.
	//
	// Format: boolean
	FilterAll *bool

	// FilterEntpstate.
	FilterEntpstate *string

	// FilterHubspotid.
	FilterHubspotid *string

	// FilterNamePattern.
	FilterNamePattern *string

	// FilterProjectid.
	FilterProjectid []string

	// FilterSfdcid.
	FilterSfdcid *string

	// FilterUserstate.
	FilterUserstate *string

	/* NextOrderBy.

	   OrderBy helps in sorting the list response
	*/
	NextOrderBy *string

	/* NextPageNum.

	   Page Number

	   Format: int64
	*/
	NextPageNum *int64

	/* NextPageSize.

	   Defines the page size

	   Format: int64
	*/
	NextPageSize *int64

	/* NextPageToken.

	   Page Token
	*/
	NextPageToken *string

	/* NextTotalPages.

	   Total number of pages to be fetched.

	   Format: int64
	*/
	NextTotalPages *int64

	// Summary.
	//
	// Format: boolean
	Summary *bool

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

QueryRolesParams contains all the parameters to send to the API endpoint

for the query roles operation.

Typically these are written to a http.Request.

func NewQueryRolesParams

func NewQueryRolesParams() *QueryRolesParams

NewQueryRolesParams creates a new QueryRolesParams 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 NewQueryRolesParamsWithContext

func NewQueryRolesParamsWithContext(ctx context.Context) *QueryRolesParams

NewQueryRolesParamsWithContext creates a new QueryRolesParams object with the ability to set a context for a request.

func NewQueryRolesParamsWithHTTPClient

func NewQueryRolesParamsWithHTTPClient(client *http.Client) *QueryRolesParams

NewQueryRolesParamsWithHTTPClient creates a new QueryRolesParams object with the ability to set a custom HTTPClient for a request.

func NewQueryRolesParamsWithTimeout

func NewQueryRolesParamsWithTimeout(timeout time.Duration) *QueryRolesParams

NewQueryRolesParamsWithTimeout creates a new QueryRolesParams object with the ability to set a timeout on a request.

func (*QueryRolesParams) SetContext

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

SetContext adds the context to the query roles params

func (*QueryRolesParams) SetDefaults

func (o *QueryRolesParams) SetDefaults()

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

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

func (*QueryRolesParams) SetFilterAll

func (o *QueryRolesParams) SetFilterAll(filterAll *bool)

SetFilterAll adds the filterAll to the query roles params

func (*QueryRolesParams) SetFilterEntpstate

func (o *QueryRolesParams) SetFilterEntpstate(filterEntpstate *string)

SetFilterEntpstate adds the filterEntpstate to the query roles params

func (*QueryRolesParams) SetFilterHubspotid

func (o *QueryRolesParams) SetFilterHubspotid(filterHubspotid *string)

SetFilterHubspotid adds the filterHubspotid to the query roles params

func (*QueryRolesParams) SetFilterNamePattern

func (o *QueryRolesParams) SetFilterNamePattern(filterNamePattern *string)

SetFilterNamePattern adds the filterNamePattern to the query roles params

func (*QueryRolesParams) SetFilterProjectid

func (o *QueryRolesParams) SetFilterProjectid(filterProjectid []string)

SetFilterProjectid adds the filterProjectid to the query roles params

func (*QueryRolesParams) SetFilterSfdcid

func (o *QueryRolesParams) SetFilterSfdcid(filterSfdcid *string)

SetFilterSfdcid adds the filterSfdcid to the query roles params

func (*QueryRolesParams) SetFilterUserstate

func (o *QueryRolesParams) SetFilterUserstate(filterUserstate *string)

SetFilterUserstate adds the filterUserstate to the query roles params

func (*QueryRolesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query roles params

func (*QueryRolesParams) SetNextOrderBy

func (o *QueryRolesParams) SetNextOrderBy(nextOrderBy *string)

SetNextOrderBy adds the nextOrderBy to the query roles params

func (*QueryRolesParams) SetNextPageNum

func (o *QueryRolesParams) SetNextPageNum(nextPageNum *int64)

SetNextPageNum adds the nextPageNum to the query roles params

func (*QueryRolesParams) SetNextPageSize

func (o *QueryRolesParams) SetNextPageSize(nextPageSize *int64)

SetNextPageSize adds the nextPageSize to the query roles params

func (*QueryRolesParams) SetNextPageToken

func (o *QueryRolesParams) SetNextPageToken(nextPageToken *string)

SetNextPageToken adds the nextPageToken to the query roles params

func (*QueryRolesParams) SetNextTotalPages

func (o *QueryRolesParams) SetNextTotalPages(nextTotalPages *int64)

SetNextTotalPages adds the nextTotalPages to the query roles params

func (*QueryRolesParams) SetSummary

func (o *QueryRolesParams) SetSummary(summary *bool)

SetSummary adds the summary to the query roles params

func (*QueryRolesParams) SetTimeout

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

SetTimeout adds the timeout to the query roles params

func (*QueryRolesParams) SetXRequestID

func (o *QueryRolesParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query roles params

func (*QueryRolesParams) WithContext

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

WithContext adds the context to the query roles params

func (*QueryRolesParams) WithDefaults

func (o *QueryRolesParams) WithDefaults() *QueryRolesParams

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

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

func (*QueryRolesParams) WithFilterAll

func (o *QueryRolesParams) WithFilterAll(filterAll *bool) *QueryRolesParams

WithFilterAll adds the filterAll to the query roles params

func (*QueryRolesParams) WithFilterEntpstate

func (o *QueryRolesParams) WithFilterEntpstate(filterEntpstate *string) *QueryRolesParams

WithFilterEntpstate adds the filterEntpstate to the query roles params

func (*QueryRolesParams) WithFilterHubspotid

func (o *QueryRolesParams) WithFilterHubspotid(filterHubspotid *string) *QueryRolesParams

WithFilterHubspotid adds the filterHubspotid to the query roles params

func (*QueryRolesParams) WithFilterNamePattern

func (o *QueryRolesParams) WithFilterNamePattern(filterNamePattern *string) *QueryRolesParams

WithFilterNamePattern adds the filterNamePattern to the query roles params

func (*QueryRolesParams) WithFilterProjectid

func (o *QueryRolesParams) WithFilterProjectid(filterProjectid []string) *QueryRolesParams

WithFilterProjectid adds the filterProjectid to the query roles params

func (*QueryRolesParams) WithFilterSfdcid

func (o *QueryRolesParams) WithFilterSfdcid(filterSfdcid *string) *QueryRolesParams

WithFilterSfdcid adds the filterSfdcid to the query roles params

func (*QueryRolesParams) WithFilterUserstate

func (o *QueryRolesParams) WithFilterUserstate(filterUserstate *string) *QueryRolesParams

WithFilterUserstate adds the filterUserstate to the query roles params

func (*QueryRolesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query roles params

func (*QueryRolesParams) WithNextOrderBy

func (o *QueryRolesParams) WithNextOrderBy(nextOrderBy *string) *QueryRolesParams

WithNextOrderBy adds the nextOrderBy to the query roles params

func (*QueryRolesParams) WithNextPageNum

func (o *QueryRolesParams) WithNextPageNum(nextPageNum *int64) *QueryRolesParams

WithNextPageNum adds the nextPageNum to the query roles params

func (*QueryRolesParams) WithNextPageSize

func (o *QueryRolesParams) WithNextPageSize(nextPageSize *int64) *QueryRolesParams

WithNextPageSize adds the nextPageSize to the query roles params

func (*QueryRolesParams) WithNextPageToken

func (o *QueryRolesParams) WithNextPageToken(nextPageToken *string) *QueryRolesParams

WithNextPageToken adds the nextPageToken to the query roles params

func (*QueryRolesParams) WithNextTotalPages

func (o *QueryRolesParams) WithNextTotalPages(nextTotalPages *int64) *QueryRolesParams

WithNextTotalPages adds the nextTotalPages to the query roles params

func (*QueryRolesParams) WithSummary

func (o *QueryRolesParams) WithSummary(summary *bool) *QueryRolesParams

WithSummary adds the summary to the query roles params

func (*QueryRolesParams) WithTimeout

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

WithTimeout adds the timeout to the query roles params

func (*QueryRolesParams) WithXRequestID

func (o *QueryRolesParams) WithXRequestID(xRequestID *string) *QueryRolesParams

WithXRequestID adds the xRequestID to the query roles params

func (*QueryRolesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type QueryRolesReader

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

QueryRolesReader is a Reader for the QueryRoles structure.

func (*QueryRolesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryRolesUnauthorized

type QueryRolesUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryRolesUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryRolesUnauthorized

func NewQueryRolesUnauthorized() *QueryRolesUnauthorized

NewQueryRolesUnauthorized creates a QueryRolesUnauthorized with default headers values

func (*QueryRolesUnauthorized) Error

func (o *QueryRolesUnauthorized) Error() string

func (*QueryRolesUnauthorized) GetPayload

type QueryUserSessionsForbidden

type QueryUserSessionsForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUserSessionsForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryUserSessionsForbidden

func NewQueryUserSessionsForbidden() *QueryUserSessionsForbidden

NewQueryUserSessionsForbidden creates a QueryUserSessionsForbidden with default headers values

func (*QueryUserSessionsForbidden) Error

func (*QueryUserSessionsForbidden) GetPayload

type QueryUserSessionsGatewayTimeout

type QueryUserSessionsGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUserSessionsGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryUserSessionsGatewayTimeout

func NewQueryUserSessionsGatewayTimeout() *QueryUserSessionsGatewayTimeout

NewQueryUserSessionsGatewayTimeout creates a QueryUserSessionsGatewayTimeout with default headers values

func (*QueryUserSessionsGatewayTimeout) Error

func (*QueryUserSessionsGatewayTimeout) GetPayload

type QueryUserSessionsInternalServerError

type QueryUserSessionsInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUserSessionsInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryUserSessionsInternalServerError

func NewQueryUserSessionsInternalServerError() *QueryUserSessionsInternalServerError

NewQueryUserSessionsInternalServerError creates a QueryUserSessionsInternalServerError with default headers values

func (*QueryUserSessionsInternalServerError) Error

func (*QueryUserSessionsInternalServerError) GetPayload

type QueryUserSessionsOK

type QueryUserSessionsOK struct {
	Payload *swagger_models.AAASuccessResponseQueryAllSessionDetails
}
QueryUserSessionsOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryUserSessionsOK

func NewQueryUserSessionsOK() *QueryUserSessionsOK

NewQueryUserSessionsOK creates a QueryUserSessionsOK with default headers values

func (*QueryUserSessionsOK) Error

func (o *QueryUserSessionsOK) Error() string

func (*QueryUserSessionsOK) GetPayload

type QueryUserSessionsParams

type QueryUserSessionsParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// TokenBase64.
	TokenBase64 *string

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

QueryUserSessionsParams contains all the parameters to send to the API endpoint

for the query user sessions operation.

Typically these are written to a http.Request.

func NewQueryUserSessionsParams

func NewQueryUserSessionsParams() *QueryUserSessionsParams

NewQueryUserSessionsParams creates a new QueryUserSessionsParams 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 NewQueryUserSessionsParamsWithContext

func NewQueryUserSessionsParamsWithContext(ctx context.Context) *QueryUserSessionsParams

NewQueryUserSessionsParamsWithContext creates a new QueryUserSessionsParams object with the ability to set a context for a request.

func NewQueryUserSessionsParamsWithHTTPClient

func NewQueryUserSessionsParamsWithHTTPClient(client *http.Client) *QueryUserSessionsParams

NewQueryUserSessionsParamsWithHTTPClient creates a new QueryUserSessionsParams object with the ability to set a custom HTTPClient for a request.

func NewQueryUserSessionsParamsWithTimeout

func NewQueryUserSessionsParamsWithTimeout(timeout time.Duration) *QueryUserSessionsParams

NewQueryUserSessionsParamsWithTimeout creates a new QueryUserSessionsParams object with the ability to set a timeout on a request.

func (*QueryUserSessionsParams) SetContext

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

SetContext adds the context to the query user sessions params

func (*QueryUserSessionsParams) SetDefaults

func (o *QueryUserSessionsParams) SetDefaults()

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

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

func (*QueryUserSessionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query user sessions params

func (*QueryUserSessionsParams) SetTimeout

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

SetTimeout adds the timeout to the query user sessions params

func (*QueryUserSessionsParams) SetTokenBase64

func (o *QueryUserSessionsParams) SetTokenBase64(tokenBase64 *string)

SetTokenBase64 adds the tokenBase64 to the query user sessions params

func (*QueryUserSessionsParams) SetXRequestID

func (o *QueryUserSessionsParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query user sessions params

func (*QueryUserSessionsParams) WithContext

WithContext adds the context to the query user sessions params

func (*QueryUserSessionsParams) WithDefaults

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

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

func (*QueryUserSessionsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query user sessions params

func (*QueryUserSessionsParams) WithTimeout

WithTimeout adds the timeout to the query user sessions params

func (*QueryUserSessionsParams) WithTokenBase64

func (o *QueryUserSessionsParams) WithTokenBase64(tokenBase64 *string) *QueryUserSessionsParams

WithTokenBase64 adds the tokenBase64 to the query user sessions params

func (*QueryUserSessionsParams) WithXRequestID

func (o *QueryUserSessionsParams) WithXRequestID(xRequestID *string) *QueryUserSessionsParams

WithXRequestID adds the xRequestID to the query user sessions params

func (*QueryUserSessionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryUserSessionsReader

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

QueryUserSessionsReader is a Reader for the QueryUserSessions structure.

func (*QueryUserSessionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryUserSessionsUnauthorized

type QueryUserSessionsUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUserSessionsUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryUserSessionsUnauthorized

func NewQueryUserSessionsUnauthorized() *QueryUserSessionsUnauthorized

NewQueryUserSessionsUnauthorized creates a QueryUserSessionsUnauthorized with default headers values

func (*QueryUserSessionsUnauthorized) Error

func (*QueryUserSessionsUnauthorized) GetPayload

type QueryUsersBadRequest

type QueryUsersBadRequest struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUsersBadRequest describes a response with status code 400, with default header values.

Bad Request. The API gateway did not process the request because of invalid value of filter parameters.

func NewQueryUsersBadRequest

func NewQueryUsersBadRequest() *QueryUsersBadRequest

NewQueryUsersBadRequest creates a QueryUsersBadRequest with default headers values

func (*QueryUsersBadRequest) Error

func (o *QueryUsersBadRequest) Error() string

func (*QueryUsersBadRequest) GetPayload

type QueryUsersForbidden

type QueryUsersForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUsersForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewQueryUsersForbidden

func NewQueryUsersForbidden() *QueryUsersForbidden

NewQueryUsersForbidden creates a QueryUsersForbidden with default headers values

func (*QueryUsersForbidden) Error

func (o *QueryUsersForbidden) Error() string

func (*QueryUsersForbidden) GetPayload

type QueryUsersGatewayTimeout

type QueryUsersGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUsersGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewQueryUsersGatewayTimeout

func NewQueryUsersGatewayTimeout() *QueryUsersGatewayTimeout

NewQueryUsersGatewayTimeout creates a QueryUsersGatewayTimeout with default headers values

func (*QueryUsersGatewayTimeout) Error

func (o *QueryUsersGatewayTimeout) Error() string

func (*QueryUsersGatewayTimeout) GetPayload

type QueryUsersInternalServerError

type QueryUsersInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUsersInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewQueryUsersInternalServerError

func NewQueryUsersInternalServerError() *QueryUsersInternalServerError

NewQueryUsersInternalServerError creates a QueryUsersInternalServerError with default headers values

func (*QueryUsersInternalServerError) Error

func (*QueryUsersInternalServerError) GetPayload

type QueryUsersOK

type QueryUsersOK struct {
	Payload *swagger_models.CrudResponse
}
QueryUsersOK describes a response with status code 200, with default header values.

A successful response.

func NewQueryUsersOK

func NewQueryUsersOK() *QueryUsersOK

NewQueryUsersOK creates a QueryUsersOK with default headers values

func (*QueryUsersOK) Error

func (o *QueryUsersOK) Error() string

func (*QueryUsersOK) GetPayload

func (o *QueryUsersOK) GetPayload() *swagger_models.CrudResponse

type QueryUsersParams

type QueryUsersParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// FilterAll.
	//
	// Format: boolean
	FilterAll *bool

	// FilterEntpstate.
	FilterEntpstate *string

	// FilterHubspotid.
	FilterHubspotid *string

	// FilterNamePattern.
	FilterNamePattern *string

	// FilterProjectid.
	FilterProjectid []string

	// FilterSfdcid.
	FilterSfdcid *string

	// FilterUserstate.
	FilterUserstate *string

	/* NextOrderBy.

	   OrderBy helps in sorting the list response
	*/
	NextOrderBy *string

	/* NextPageNum.

	   Page Number

	   Format: int64
	*/
	NextPageNum *int64

	/* NextPageSize.

	   Defines the page size

	   Format: int64
	*/
	NextPageSize *int64

	/* NextPageToken.

	   Page Token
	*/
	NextPageToken *string

	/* NextTotalPages.

	   Total number of pages to be fetched.

	   Format: int64
	*/
	NextTotalPages *int64

	// Summary.
	//
	// Format: boolean
	Summary *bool

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

QueryUsersParams contains all the parameters to send to the API endpoint

for the query users operation.

Typically these are written to a http.Request.

func NewQueryUsersParams

func NewQueryUsersParams() *QueryUsersParams

NewQueryUsersParams creates a new QueryUsersParams 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 NewQueryUsersParamsWithContext

func NewQueryUsersParamsWithContext(ctx context.Context) *QueryUsersParams

NewQueryUsersParamsWithContext creates a new QueryUsersParams object with the ability to set a context for a request.

func NewQueryUsersParamsWithHTTPClient

func NewQueryUsersParamsWithHTTPClient(client *http.Client) *QueryUsersParams

NewQueryUsersParamsWithHTTPClient creates a new QueryUsersParams object with the ability to set a custom HTTPClient for a request.

func NewQueryUsersParamsWithTimeout

func NewQueryUsersParamsWithTimeout(timeout time.Duration) *QueryUsersParams

NewQueryUsersParamsWithTimeout creates a new QueryUsersParams object with the ability to set a timeout on a request.

func (*QueryUsersParams) SetContext

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

SetContext adds the context to the query users params

func (*QueryUsersParams) SetDefaults

func (o *QueryUsersParams) SetDefaults()

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

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

func (*QueryUsersParams) SetFilterAll

func (o *QueryUsersParams) SetFilterAll(filterAll *bool)

SetFilterAll adds the filterAll to the query users params

func (*QueryUsersParams) SetFilterEntpstate

func (o *QueryUsersParams) SetFilterEntpstate(filterEntpstate *string)

SetFilterEntpstate adds the filterEntpstate to the query users params

func (*QueryUsersParams) SetFilterHubspotid

func (o *QueryUsersParams) SetFilterHubspotid(filterHubspotid *string)

SetFilterHubspotid adds the filterHubspotid to the query users params

func (*QueryUsersParams) SetFilterNamePattern

func (o *QueryUsersParams) SetFilterNamePattern(filterNamePattern *string)

SetFilterNamePattern adds the filterNamePattern to the query users params

func (*QueryUsersParams) SetFilterProjectid

func (o *QueryUsersParams) SetFilterProjectid(filterProjectid []string)

SetFilterProjectid adds the filterProjectid to the query users params

func (*QueryUsersParams) SetFilterSfdcid

func (o *QueryUsersParams) SetFilterSfdcid(filterSfdcid *string)

SetFilterSfdcid adds the filterSfdcid to the query users params

func (*QueryUsersParams) SetFilterUserstate

func (o *QueryUsersParams) SetFilterUserstate(filterUserstate *string)

SetFilterUserstate adds the filterUserstate to the query users params

func (*QueryUsersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query users params

func (*QueryUsersParams) SetNextOrderBy

func (o *QueryUsersParams) SetNextOrderBy(nextOrderBy *string)

SetNextOrderBy adds the nextOrderBy to the query users params

func (*QueryUsersParams) SetNextPageNum

func (o *QueryUsersParams) SetNextPageNum(nextPageNum *int64)

SetNextPageNum adds the nextPageNum to the query users params

func (*QueryUsersParams) SetNextPageSize

func (o *QueryUsersParams) SetNextPageSize(nextPageSize *int64)

SetNextPageSize adds the nextPageSize to the query users params

func (*QueryUsersParams) SetNextPageToken

func (o *QueryUsersParams) SetNextPageToken(nextPageToken *string)

SetNextPageToken adds the nextPageToken to the query users params

func (*QueryUsersParams) SetNextTotalPages

func (o *QueryUsersParams) SetNextTotalPages(nextTotalPages *int64)

SetNextTotalPages adds the nextTotalPages to the query users params

func (*QueryUsersParams) SetSummary

func (o *QueryUsersParams) SetSummary(summary *bool)

SetSummary adds the summary to the query users params

func (*QueryUsersParams) SetTimeout

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

SetTimeout adds the timeout to the query users params

func (*QueryUsersParams) SetXRequestID

func (o *QueryUsersParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the query users params

func (*QueryUsersParams) WithContext

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

WithContext adds the context to the query users params

func (*QueryUsersParams) WithDefaults

func (o *QueryUsersParams) WithDefaults() *QueryUsersParams

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

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

func (*QueryUsersParams) WithFilterAll

func (o *QueryUsersParams) WithFilterAll(filterAll *bool) *QueryUsersParams

WithFilterAll adds the filterAll to the query users params

func (*QueryUsersParams) WithFilterEntpstate

func (o *QueryUsersParams) WithFilterEntpstate(filterEntpstate *string) *QueryUsersParams

WithFilterEntpstate adds the filterEntpstate to the query users params

func (*QueryUsersParams) WithFilterHubspotid

func (o *QueryUsersParams) WithFilterHubspotid(filterHubspotid *string) *QueryUsersParams

WithFilterHubspotid adds the filterHubspotid to the query users params

func (*QueryUsersParams) WithFilterNamePattern

func (o *QueryUsersParams) WithFilterNamePattern(filterNamePattern *string) *QueryUsersParams

WithFilterNamePattern adds the filterNamePattern to the query users params

func (*QueryUsersParams) WithFilterProjectid

func (o *QueryUsersParams) WithFilterProjectid(filterProjectid []string) *QueryUsersParams

WithFilterProjectid adds the filterProjectid to the query users params

func (*QueryUsersParams) WithFilterSfdcid

func (o *QueryUsersParams) WithFilterSfdcid(filterSfdcid *string) *QueryUsersParams

WithFilterSfdcid adds the filterSfdcid to the query users params

func (*QueryUsersParams) WithFilterUserstate

func (o *QueryUsersParams) WithFilterUserstate(filterUserstate *string) *QueryUsersParams

WithFilterUserstate adds the filterUserstate to the query users params

func (*QueryUsersParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query users params

func (*QueryUsersParams) WithNextOrderBy

func (o *QueryUsersParams) WithNextOrderBy(nextOrderBy *string) *QueryUsersParams

WithNextOrderBy adds the nextOrderBy to the query users params

func (*QueryUsersParams) WithNextPageNum

func (o *QueryUsersParams) WithNextPageNum(nextPageNum *int64) *QueryUsersParams

WithNextPageNum adds the nextPageNum to the query users params

func (*QueryUsersParams) WithNextPageSize

func (o *QueryUsersParams) WithNextPageSize(nextPageSize *int64) *QueryUsersParams

WithNextPageSize adds the nextPageSize to the query users params

func (*QueryUsersParams) WithNextPageToken

func (o *QueryUsersParams) WithNextPageToken(nextPageToken *string) *QueryUsersParams

WithNextPageToken adds the nextPageToken to the query users params

func (*QueryUsersParams) WithNextTotalPages

func (o *QueryUsersParams) WithNextTotalPages(nextTotalPages *int64) *QueryUsersParams

WithNextTotalPages adds the nextTotalPages to the query users params

func (*QueryUsersParams) WithSummary

func (o *QueryUsersParams) WithSummary(summary *bool) *QueryUsersParams

WithSummary adds the summary to the query users params

func (*QueryUsersParams) WithTimeout

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

WithTimeout adds the timeout to the query users params

func (*QueryUsersParams) WithXRequestID

func (o *QueryUsersParams) WithXRequestID(xRequestID *string) *QueryUsersParams

WithXRequestID adds the xRequestID to the query users params

func (*QueryUsersParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type QueryUsersReader

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

QueryUsersReader is a Reader for the QueryUsers structure.

func (*QueryUsersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryUsersUnauthorized

type QueryUsersUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
QueryUsersUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewQueryUsersUnauthorized

func NewQueryUsersUnauthorized() *QueryUsersUnauthorized

NewQueryUsersUnauthorized creates a QueryUsersUnauthorized with default headers values

func (*QueryUsersUnauthorized) Error

func (o *QueryUsersUnauthorized) Error() string

func (*QueryUsersUnauthorized) GetPayload

type RefreshUserSessionForbidden

type RefreshUserSessionForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
RefreshUserSessionForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewRefreshUserSessionForbidden

func NewRefreshUserSessionForbidden() *RefreshUserSessionForbidden

NewRefreshUserSessionForbidden creates a RefreshUserSessionForbidden with default headers values

func (*RefreshUserSessionForbidden) Error

func (*RefreshUserSessionForbidden) GetPayload

type RefreshUserSessionGatewayTimeout

type RefreshUserSessionGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
RefreshUserSessionGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewRefreshUserSessionGatewayTimeout

func NewRefreshUserSessionGatewayTimeout() *RefreshUserSessionGatewayTimeout

NewRefreshUserSessionGatewayTimeout creates a RefreshUserSessionGatewayTimeout with default headers values

func (*RefreshUserSessionGatewayTimeout) Error

func (*RefreshUserSessionGatewayTimeout) GetPayload

type RefreshUserSessionInternalServerError

type RefreshUserSessionInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
RefreshUserSessionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewRefreshUserSessionInternalServerError

func NewRefreshUserSessionInternalServerError() *RefreshUserSessionInternalServerError

NewRefreshUserSessionInternalServerError creates a RefreshUserSessionInternalServerError with default headers values

func (*RefreshUserSessionInternalServerError) Error

func (*RefreshUserSessionInternalServerError) GetPayload

type RefreshUserSessionOK

type RefreshUserSessionOK struct {
	Payload *swagger_models.AAAFrontendRefreshResponse
}
RefreshUserSessionOK describes a response with status code 200, with default header values.

A successful response.

func NewRefreshUserSessionOK

func NewRefreshUserSessionOK() *RefreshUserSessionOK

NewRefreshUserSessionOK creates a RefreshUserSessionOK with default headers values

func (*RefreshUserSessionOK) Error

func (o *RefreshUserSessionOK) Error() string

func (*RefreshUserSessionOK) GetPayload

type RefreshUserSessionParams

type RefreshUserSessionParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

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

RefreshUserSessionParams contains all the parameters to send to the API endpoint

for the refresh user session operation.

Typically these are written to a http.Request.

func NewRefreshUserSessionParams

func NewRefreshUserSessionParams() *RefreshUserSessionParams

NewRefreshUserSessionParams creates a new RefreshUserSessionParams 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 NewRefreshUserSessionParamsWithContext

func NewRefreshUserSessionParamsWithContext(ctx context.Context) *RefreshUserSessionParams

NewRefreshUserSessionParamsWithContext creates a new RefreshUserSessionParams object with the ability to set a context for a request.

func NewRefreshUserSessionParamsWithHTTPClient

func NewRefreshUserSessionParamsWithHTTPClient(client *http.Client) *RefreshUserSessionParams

NewRefreshUserSessionParamsWithHTTPClient creates a new RefreshUserSessionParams object with the ability to set a custom HTTPClient for a request.

func NewRefreshUserSessionParamsWithTimeout

func NewRefreshUserSessionParamsWithTimeout(timeout time.Duration) *RefreshUserSessionParams

NewRefreshUserSessionParamsWithTimeout creates a new RefreshUserSessionParams object with the ability to set a timeout on a request.

func (*RefreshUserSessionParams) SetContext

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

SetContext adds the context to the refresh user session params

func (*RefreshUserSessionParams) SetDefaults

func (o *RefreshUserSessionParams) SetDefaults()

SetDefaults hydrates default values in the refresh user session params (not the query body).

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

func (*RefreshUserSessionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the refresh user session params

func (*RefreshUserSessionParams) SetTimeout

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

SetTimeout adds the timeout to the refresh user session params

func (*RefreshUserSessionParams) SetXRequestID

func (o *RefreshUserSessionParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the refresh user session params

func (*RefreshUserSessionParams) WithContext

WithContext adds the context to the refresh user session params

func (*RefreshUserSessionParams) WithDefaults

WithDefaults hydrates default values in the refresh user session params (not the query body).

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

func (*RefreshUserSessionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the refresh user session params

func (*RefreshUserSessionParams) WithTimeout

WithTimeout adds the timeout to the refresh user session params

func (*RefreshUserSessionParams) WithXRequestID

func (o *RefreshUserSessionParams) WithXRequestID(xRequestID *string) *RefreshUserSessionParams

WithXRequestID adds the xRequestID to the refresh user session params

func (*RefreshUserSessionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RefreshUserSessionReader

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

RefreshUserSessionReader is a Reader for the RefreshUserSession structure.

func (*RefreshUserSessionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RefreshUserSessionUnauthorized

type RefreshUserSessionUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
RefreshUserSessionUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewRefreshUserSessionUnauthorized

func NewRefreshUserSessionUnauthorized() *RefreshUserSessionUnauthorized

NewRefreshUserSessionUnauthorized creates a RefreshUserSessionUnauthorized with default headers values

func (*RefreshUserSessionUnauthorized) Error

func (*RefreshUserSessionUnauthorized) GetPayload

type SignupEnterpriseForbidden

type SignupEnterpriseForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
SignupEnterpriseForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewSignupEnterpriseForbidden

func NewSignupEnterpriseForbidden() *SignupEnterpriseForbidden

NewSignupEnterpriseForbidden creates a SignupEnterpriseForbidden with default headers values

func (*SignupEnterpriseForbidden) Error

func (o *SignupEnterpriseForbidden) Error() string

func (*SignupEnterpriseForbidden) GetPayload

type SignupEnterpriseGatewayTimeout

type SignupEnterpriseGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
SignupEnterpriseGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewSignupEnterpriseGatewayTimeout

func NewSignupEnterpriseGatewayTimeout() *SignupEnterpriseGatewayTimeout

NewSignupEnterpriseGatewayTimeout creates a SignupEnterpriseGatewayTimeout with default headers values

func (*SignupEnterpriseGatewayTimeout) Error

func (*SignupEnterpriseGatewayTimeout) GetPayload

type SignupEnterpriseInternalServerError

type SignupEnterpriseInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
SignupEnterpriseInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewSignupEnterpriseInternalServerError

func NewSignupEnterpriseInternalServerError() *SignupEnterpriseInternalServerError

NewSignupEnterpriseInternalServerError creates a SignupEnterpriseInternalServerError with default headers values

func (*SignupEnterpriseInternalServerError) Error

func (*SignupEnterpriseInternalServerError) GetPayload

type SignupEnterpriseOK

type SignupEnterpriseOK struct {
	Payload *swagger_models.AAAResponse
}
SignupEnterpriseOK describes a response with status code 200, with default header values.

A successful response.

func NewSignupEnterpriseOK

func NewSignupEnterpriseOK() *SignupEnterpriseOK

NewSignupEnterpriseOK creates a SignupEnterpriseOK with default headers values

func (*SignupEnterpriseOK) Error

func (o *SignupEnterpriseOK) Error() string

func (*SignupEnterpriseOK) GetPayload

type SignupEnterpriseParams

type SignupEnterpriseParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAARequestEnterpriseSignup

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

SignupEnterpriseParams contains all the parameters to send to the API endpoint

for the signup enterprise operation.

Typically these are written to a http.Request.

func NewSignupEnterpriseParams

func NewSignupEnterpriseParams() *SignupEnterpriseParams

NewSignupEnterpriseParams creates a new SignupEnterpriseParams 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 NewSignupEnterpriseParamsWithContext

func NewSignupEnterpriseParamsWithContext(ctx context.Context) *SignupEnterpriseParams

NewSignupEnterpriseParamsWithContext creates a new SignupEnterpriseParams object with the ability to set a context for a request.

func NewSignupEnterpriseParamsWithHTTPClient

func NewSignupEnterpriseParamsWithHTTPClient(client *http.Client) *SignupEnterpriseParams

NewSignupEnterpriseParamsWithHTTPClient creates a new SignupEnterpriseParams object with the ability to set a custom HTTPClient for a request.

func NewSignupEnterpriseParamsWithTimeout

func NewSignupEnterpriseParamsWithTimeout(timeout time.Duration) *SignupEnterpriseParams

NewSignupEnterpriseParamsWithTimeout creates a new SignupEnterpriseParams object with the ability to set a timeout on a request.

func (*SignupEnterpriseParams) SetBody

SetBody adds the body to the signup enterprise params

func (*SignupEnterpriseParams) SetContext

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

SetContext adds the context to the signup enterprise params

func (*SignupEnterpriseParams) SetDefaults

func (o *SignupEnterpriseParams) SetDefaults()

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

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

func (*SignupEnterpriseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the signup enterprise params

func (*SignupEnterpriseParams) SetTimeout

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

SetTimeout adds the timeout to the signup enterprise params

func (*SignupEnterpriseParams) SetXRequestID

func (o *SignupEnterpriseParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the signup enterprise params

func (*SignupEnterpriseParams) WithBody

WithBody adds the body to the signup enterprise params

func (*SignupEnterpriseParams) WithContext

WithContext adds the context to the signup enterprise params

func (*SignupEnterpriseParams) WithDefaults

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

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

func (*SignupEnterpriseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the signup enterprise params

func (*SignupEnterpriseParams) WithTimeout

WithTimeout adds the timeout to the signup enterprise params

func (*SignupEnterpriseParams) WithXRequestID

func (o *SignupEnterpriseParams) WithXRequestID(xRequestID *string) *SignupEnterpriseParams

WithXRequestID adds the xRequestID to the signup enterprise params

func (*SignupEnterpriseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SignupEnterpriseReader

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

SignupEnterpriseReader is a Reader for the SignupEnterprise structure.

func (*SignupEnterpriseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SignupEnterpriseUnauthorized

type SignupEnterpriseUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
SignupEnterpriseUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewSignupEnterpriseUnauthorized

func NewSignupEnterpriseUnauthorized() *SignupEnterpriseUnauthorized

NewSignupEnterpriseUnauthorized creates a SignupEnterpriseUnauthorized with default headers values

func (*SignupEnterpriseUnauthorized) Error

func (*SignupEnterpriseUnauthorized) GetPayload

type SignupUserForbidden

type SignupUserForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
SignupUserForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewSignupUserForbidden

func NewSignupUserForbidden() *SignupUserForbidden

NewSignupUserForbidden creates a SignupUserForbidden with default headers values

func (*SignupUserForbidden) Error

func (o *SignupUserForbidden) Error() string

func (*SignupUserForbidden) GetPayload

type SignupUserGatewayTimeout

type SignupUserGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
SignupUserGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewSignupUserGatewayTimeout

func NewSignupUserGatewayTimeout() *SignupUserGatewayTimeout

NewSignupUserGatewayTimeout creates a SignupUserGatewayTimeout with default headers values

func (*SignupUserGatewayTimeout) Error

func (o *SignupUserGatewayTimeout) Error() string

func (*SignupUserGatewayTimeout) GetPayload

type SignupUserInternalServerError

type SignupUserInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
SignupUserInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewSignupUserInternalServerError

func NewSignupUserInternalServerError() *SignupUserInternalServerError

NewSignupUserInternalServerError creates a SignupUserInternalServerError with default headers values

func (*SignupUserInternalServerError) Error

func (*SignupUserInternalServerError) GetPayload

type SignupUserOK

type SignupUserOK struct {
	Payload *swagger_models.AAAResponse
}
SignupUserOK describes a response with status code 200, with default header values.

A successful response.

func NewSignupUserOK

func NewSignupUserOK() *SignupUserOK

NewSignupUserOK creates a SignupUserOK with default headers values

func (*SignupUserOK) Error

func (o *SignupUserOK) Error() string

func (*SignupUserOK) GetPayload

func (o *SignupUserOK) GetPayload() *swagger_models.AAAResponse

type SignupUserParams

type SignupUserParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AAARequestAdminUserSignup

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

SignupUserParams contains all the parameters to send to the API endpoint

for the signup user operation.

Typically these are written to a http.Request.

func NewSignupUserParams

func NewSignupUserParams() *SignupUserParams

NewSignupUserParams creates a new SignupUserParams 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 NewSignupUserParamsWithContext

func NewSignupUserParamsWithContext(ctx context.Context) *SignupUserParams

NewSignupUserParamsWithContext creates a new SignupUserParams object with the ability to set a context for a request.

func NewSignupUserParamsWithHTTPClient

func NewSignupUserParamsWithHTTPClient(client *http.Client) *SignupUserParams

NewSignupUserParamsWithHTTPClient creates a new SignupUserParams object with the ability to set a custom HTTPClient for a request.

func NewSignupUserParamsWithTimeout

func NewSignupUserParamsWithTimeout(timeout time.Duration) *SignupUserParams

NewSignupUserParamsWithTimeout creates a new SignupUserParams object with the ability to set a timeout on a request.

func (*SignupUserParams) SetBody

SetBody adds the body to the signup user params

func (*SignupUserParams) SetContext

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

SetContext adds the context to the signup user params

func (*SignupUserParams) SetDefaults

func (o *SignupUserParams) SetDefaults()

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

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

func (*SignupUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the signup user params

func (*SignupUserParams) SetTimeout

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

SetTimeout adds the timeout to the signup user params

func (*SignupUserParams) SetXRequestID

func (o *SignupUserParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the signup user params

func (*SignupUserParams) WithBody

WithBody adds the body to the signup user params

func (*SignupUserParams) WithContext

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

WithContext adds the context to the signup user params

func (*SignupUserParams) WithDefaults

func (o *SignupUserParams) WithDefaults() *SignupUserParams

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

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

func (*SignupUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the signup user params

func (*SignupUserParams) WithTimeout

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

WithTimeout adds the timeout to the signup user params

func (*SignupUserParams) WithXRequestID

func (o *SignupUserParams) WithXRequestID(xRequestID *string) *SignupUserParams

WithXRequestID adds the xRequestID to the signup user params

func (*SignupUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SignupUserReader

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

SignupUserReader is a Reader for the SignupUser structure.

func (*SignupUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SignupUserUnauthorized

type SignupUserUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
SignupUserUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewSignupUserUnauthorized

func NewSignupUserUnauthorized() *SignupUserUnauthorized

NewSignupUserUnauthorized creates a SignupUserUnauthorized with default headers values

func (*SignupUserUnauthorized) Error

func (o *SignupUserUnauthorized) Error() string

func (*SignupUserUnauthorized) GetPayload

type UpdateAuthProfileConflict

type UpdateAuthProfileConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing AAA profile record.

func NewUpdateAuthProfileConflict

func NewUpdateAuthProfileConflict() *UpdateAuthProfileConflict

NewUpdateAuthProfileConflict creates a UpdateAuthProfileConflict with default headers values

func (*UpdateAuthProfileConflict) Error

func (o *UpdateAuthProfileConflict) Error() string

func (*UpdateAuthProfileConflict) GetPayload

type UpdateAuthProfileForbidden

type UpdateAuthProfileForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateAuthProfileForbidden

func NewUpdateAuthProfileForbidden() *UpdateAuthProfileForbidden

NewUpdateAuthProfileForbidden creates a UpdateAuthProfileForbidden with default headers values

func (*UpdateAuthProfileForbidden) Error

func (*UpdateAuthProfileForbidden) GetPayload

type UpdateAuthProfileGatewayTimeout

type UpdateAuthProfileGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateAuthProfileGatewayTimeout

func NewUpdateAuthProfileGatewayTimeout() *UpdateAuthProfileGatewayTimeout

NewUpdateAuthProfileGatewayTimeout creates a UpdateAuthProfileGatewayTimeout with default headers values

func (*UpdateAuthProfileGatewayTimeout) Error

func (*UpdateAuthProfileGatewayTimeout) GetPayload

type UpdateAuthProfileInternalServerError

type UpdateAuthProfileInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateAuthProfileInternalServerError

func NewUpdateAuthProfileInternalServerError() *UpdateAuthProfileInternalServerError

NewUpdateAuthProfileInternalServerError creates a UpdateAuthProfileInternalServerError with default headers values

func (*UpdateAuthProfileInternalServerError) Error

func (*UpdateAuthProfileInternalServerError) GetPayload

type UpdateAuthProfileNotFound

type UpdateAuthProfileNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateAuthProfileNotFound

func NewUpdateAuthProfileNotFound() *UpdateAuthProfileNotFound

NewUpdateAuthProfileNotFound creates a UpdateAuthProfileNotFound with default headers values

func (*UpdateAuthProfileNotFound) Error

func (o *UpdateAuthProfileNotFound) Error() string

func (*UpdateAuthProfileNotFound) GetPayload

type UpdateAuthProfileOK

type UpdateAuthProfileOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateAuthProfileOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateAuthProfileOK

func NewUpdateAuthProfileOK() *UpdateAuthProfileOK

NewUpdateAuthProfileOK creates a UpdateAuthProfileOK with default headers values

func (*UpdateAuthProfileOK) Error

func (o *UpdateAuthProfileOK) Error() string

func (*UpdateAuthProfileOK) GetPayload

type UpdateAuthProfileParams

type UpdateAuthProfileParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.AuthorizationProfile

	/* ID.

	   Unique system defined profile ID
	*/
	ID string

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

UpdateAuthProfileParams contains all the parameters to send to the API endpoint

for the update auth profile operation.

Typically these are written to a http.Request.

func NewUpdateAuthProfileParams

func NewUpdateAuthProfileParams() *UpdateAuthProfileParams

NewUpdateAuthProfileParams creates a new UpdateAuthProfileParams 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 NewUpdateAuthProfileParamsWithContext

func NewUpdateAuthProfileParamsWithContext(ctx context.Context) *UpdateAuthProfileParams

NewUpdateAuthProfileParamsWithContext creates a new UpdateAuthProfileParams object with the ability to set a context for a request.

func NewUpdateAuthProfileParamsWithHTTPClient

func NewUpdateAuthProfileParamsWithHTTPClient(client *http.Client) *UpdateAuthProfileParams

NewUpdateAuthProfileParamsWithHTTPClient creates a new UpdateAuthProfileParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateAuthProfileParamsWithTimeout

func NewUpdateAuthProfileParamsWithTimeout(timeout time.Duration) *UpdateAuthProfileParams

NewUpdateAuthProfileParamsWithTimeout creates a new UpdateAuthProfileParams object with the ability to set a timeout on a request.

func (*UpdateAuthProfileParams) SetBody

SetBody adds the body to the update auth profile params

func (*UpdateAuthProfileParams) SetContext

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

SetContext adds the context to the update auth profile params

func (*UpdateAuthProfileParams) SetDefaults

func (o *UpdateAuthProfileParams) SetDefaults()

SetDefaults hydrates default values in the update auth profile params (not the query body).

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

func (*UpdateAuthProfileParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update auth profile params

func (*UpdateAuthProfileParams) SetID

func (o *UpdateAuthProfileParams) SetID(id string)

SetID adds the id to the update auth profile params

func (*UpdateAuthProfileParams) SetTimeout

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

SetTimeout adds the timeout to the update auth profile params

func (*UpdateAuthProfileParams) SetXRequestID

func (o *UpdateAuthProfileParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update auth profile params

func (*UpdateAuthProfileParams) WithBody

WithBody adds the body to the update auth profile params

func (*UpdateAuthProfileParams) WithContext

WithContext adds the context to the update auth profile params

func (*UpdateAuthProfileParams) WithDefaults

WithDefaults hydrates default values in the update auth profile params (not the query body).

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

func (*UpdateAuthProfileParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update auth profile params

func (*UpdateAuthProfileParams) WithID

WithID adds the id to the update auth profile params

func (*UpdateAuthProfileParams) WithTimeout

WithTimeout adds the timeout to the update auth profile params

func (*UpdateAuthProfileParams) WithXRequestID

func (o *UpdateAuthProfileParams) WithXRequestID(xRequestID *string) *UpdateAuthProfileParams

WithXRequestID adds the xRequestID to the update auth profile params

func (*UpdateAuthProfileParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateAuthProfileReader

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

UpdateAuthProfileReader is a Reader for the UpdateAuthProfile structure.

func (*UpdateAuthProfileReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateAuthProfileUnauthorized

type UpdateAuthProfileUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateAuthProfileUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateAuthProfileUnauthorized

func NewUpdateAuthProfileUnauthorized() *UpdateAuthProfileUnauthorized

NewUpdateAuthProfileUnauthorized creates a UpdateAuthProfileUnauthorized with default headers values

func (*UpdateAuthProfileUnauthorized) Error

func (*UpdateAuthProfileUnauthorized) GetPayload

type UpdateCredentialConflict

type UpdateCredentialConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing IAM credential record.

func NewUpdateCredentialConflict

func NewUpdateCredentialConflict() *UpdateCredentialConflict

NewUpdateCredentialConflict creates a UpdateCredentialConflict with default headers values

func (*UpdateCredentialConflict) Error

func (o *UpdateCredentialConflict) Error() string

func (*UpdateCredentialConflict) GetPayload

type UpdateCredentialForbidden

type UpdateCredentialForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateCredentialForbidden

func NewUpdateCredentialForbidden() *UpdateCredentialForbidden

NewUpdateCredentialForbidden creates a UpdateCredentialForbidden with default headers values

func (*UpdateCredentialForbidden) Error

func (o *UpdateCredentialForbidden) Error() string

func (*UpdateCredentialForbidden) GetPayload

type UpdateCredentialGatewayTimeout

type UpdateCredentialGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateCredentialGatewayTimeout

func NewUpdateCredentialGatewayTimeout() *UpdateCredentialGatewayTimeout

NewUpdateCredentialGatewayTimeout creates a UpdateCredentialGatewayTimeout with default headers values

func (*UpdateCredentialGatewayTimeout) Error

func (*UpdateCredentialGatewayTimeout) GetPayload

type UpdateCredentialInternalServerError

type UpdateCredentialInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateCredentialInternalServerError

func NewUpdateCredentialInternalServerError() *UpdateCredentialInternalServerError

NewUpdateCredentialInternalServerError creates a UpdateCredentialInternalServerError with default headers values

func (*UpdateCredentialInternalServerError) Error

func (*UpdateCredentialInternalServerError) GetPayload

type UpdateCredentialNotFound

type UpdateCredentialNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateCredentialNotFound

func NewUpdateCredentialNotFound() *UpdateCredentialNotFound

NewUpdateCredentialNotFound creates a UpdateCredentialNotFound with default headers values

func (*UpdateCredentialNotFound) Error

func (o *UpdateCredentialNotFound) Error() string

func (*UpdateCredentialNotFound) GetPayload

type UpdateCredentialOK

type UpdateCredentialOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateCredentialOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateCredentialOK

func NewUpdateCredentialOK() *UpdateCredentialOK

NewUpdateCredentialOK creates a UpdateCredentialOK with default headers values

func (*UpdateCredentialOK) Error

func (o *UpdateCredentialOK) Error() string

func (*UpdateCredentialOK) GetPayload

type UpdateCredentialParams

type UpdateCredentialParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Credential

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

UpdateCredentialParams contains all the parameters to send to the API endpoint

for the update credential operation.

Typically these are written to a http.Request.

func NewUpdateCredentialParams

func NewUpdateCredentialParams() *UpdateCredentialParams

NewUpdateCredentialParams creates a new UpdateCredentialParams 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 NewUpdateCredentialParamsWithContext

func NewUpdateCredentialParamsWithContext(ctx context.Context) *UpdateCredentialParams

NewUpdateCredentialParamsWithContext creates a new UpdateCredentialParams object with the ability to set a context for a request.

func NewUpdateCredentialParamsWithHTTPClient

func NewUpdateCredentialParamsWithHTTPClient(client *http.Client) *UpdateCredentialParams

NewUpdateCredentialParamsWithHTTPClient creates a new UpdateCredentialParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateCredentialParamsWithTimeout

func NewUpdateCredentialParamsWithTimeout(timeout time.Duration) *UpdateCredentialParams

NewUpdateCredentialParamsWithTimeout creates a new UpdateCredentialParams object with the ability to set a timeout on a request.

func (*UpdateCredentialParams) SetBody

SetBody adds the body to the update credential params

func (*UpdateCredentialParams) SetContext

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

SetContext adds the context to the update credential params

func (*UpdateCredentialParams) SetDefaults

func (o *UpdateCredentialParams) SetDefaults()

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

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

func (*UpdateCredentialParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update credential params

func (*UpdateCredentialParams) SetTimeout

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

SetTimeout adds the timeout to the update credential params

func (*UpdateCredentialParams) SetXRequestID

func (o *UpdateCredentialParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update credential params

func (*UpdateCredentialParams) WithBody

WithBody adds the body to the update credential params

func (*UpdateCredentialParams) WithContext

WithContext adds the context to the update credential params

func (*UpdateCredentialParams) WithDefaults

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

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

func (*UpdateCredentialParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update credential params

func (*UpdateCredentialParams) WithTimeout

WithTimeout adds the timeout to the update credential params

func (*UpdateCredentialParams) WithXRequestID

func (o *UpdateCredentialParams) WithXRequestID(xRequestID *string) *UpdateCredentialParams

WithXRequestID adds the xRequestID to the update credential params

func (*UpdateCredentialParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateCredentialReader

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

UpdateCredentialReader is a Reader for the UpdateCredential structure.

func (*UpdateCredentialReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateCredentialSelfConflict

type UpdateCredentialSelfConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing IAM credential record.

func NewUpdateCredentialSelfConflict

func NewUpdateCredentialSelfConflict() *UpdateCredentialSelfConflict

NewUpdateCredentialSelfConflict creates a UpdateCredentialSelfConflict with default headers values

func (*UpdateCredentialSelfConflict) Error

func (*UpdateCredentialSelfConflict) GetPayload

type UpdateCredentialSelfForbidden

type UpdateCredentialSelfForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateCredentialSelfForbidden

func NewUpdateCredentialSelfForbidden() *UpdateCredentialSelfForbidden

NewUpdateCredentialSelfForbidden creates a UpdateCredentialSelfForbidden with default headers values

func (*UpdateCredentialSelfForbidden) Error

func (*UpdateCredentialSelfForbidden) GetPayload

type UpdateCredentialSelfGatewayTimeout

type UpdateCredentialSelfGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateCredentialSelfGatewayTimeout

func NewUpdateCredentialSelfGatewayTimeout() *UpdateCredentialSelfGatewayTimeout

NewUpdateCredentialSelfGatewayTimeout creates a UpdateCredentialSelfGatewayTimeout with default headers values

func (*UpdateCredentialSelfGatewayTimeout) Error

func (*UpdateCredentialSelfGatewayTimeout) GetPayload

type UpdateCredentialSelfInternalServerError

type UpdateCredentialSelfInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateCredentialSelfInternalServerError

func NewUpdateCredentialSelfInternalServerError() *UpdateCredentialSelfInternalServerError

NewUpdateCredentialSelfInternalServerError creates a UpdateCredentialSelfInternalServerError with default headers values

func (*UpdateCredentialSelfInternalServerError) Error

func (*UpdateCredentialSelfInternalServerError) GetPayload

type UpdateCredentialSelfNotFound

type UpdateCredentialSelfNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateCredentialSelfNotFound

func NewUpdateCredentialSelfNotFound() *UpdateCredentialSelfNotFound

NewUpdateCredentialSelfNotFound creates a UpdateCredentialSelfNotFound with default headers values

func (*UpdateCredentialSelfNotFound) Error

func (*UpdateCredentialSelfNotFound) GetPayload

type UpdateCredentialSelfOK

type UpdateCredentialSelfOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateCredentialSelfOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateCredentialSelfOK

func NewUpdateCredentialSelfOK() *UpdateCredentialSelfOK

NewUpdateCredentialSelfOK creates a UpdateCredentialSelfOK with default headers values

func (*UpdateCredentialSelfOK) Error

func (o *UpdateCredentialSelfOK) Error() string

func (*UpdateCredentialSelfOK) GetPayload

type UpdateCredentialSelfParams

type UpdateCredentialSelfParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Credential

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

UpdateCredentialSelfParams contains all the parameters to send to the API endpoint

for the update credential self operation.

Typically these are written to a http.Request.

func NewUpdateCredentialSelfParams

func NewUpdateCredentialSelfParams() *UpdateCredentialSelfParams

NewUpdateCredentialSelfParams creates a new UpdateCredentialSelfParams 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 NewUpdateCredentialSelfParamsWithContext

func NewUpdateCredentialSelfParamsWithContext(ctx context.Context) *UpdateCredentialSelfParams

NewUpdateCredentialSelfParamsWithContext creates a new UpdateCredentialSelfParams object with the ability to set a context for a request.

func NewUpdateCredentialSelfParamsWithHTTPClient

func NewUpdateCredentialSelfParamsWithHTTPClient(client *http.Client) *UpdateCredentialSelfParams

NewUpdateCredentialSelfParamsWithHTTPClient creates a new UpdateCredentialSelfParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateCredentialSelfParamsWithTimeout

func NewUpdateCredentialSelfParamsWithTimeout(timeout time.Duration) *UpdateCredentialSelfParams

NewUpdateCredentialSelfParamsWithTimeout creates a new UpdateCredentialSelfParams object with the ability to set a timeout on a request.

func (*UpdateCredentialSelfParams) SetBody

SetBody adds the body to the update credential self params

func (*UpdateCredentialSelfParams) SetContext

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

SetContext adds the context to the update credential self params

func (*UpdateCredentialSelfParams) SetDefaults

func (o *UpdateCredentialSelfParams) SetDefaults()

SetDefaults hydrates default values in the update credential self params (not the query body).

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

func (*UpdateCredentialSelfParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update credential self params

func (*UpdateCredentialSelfParams) SetTimeout

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

SetTimeout adds the timeout to the update credential self params

func (*UpdateCredentialSelfParams) SetXRequestID

func (o *UpdateCredentialSelfParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update credential self params

func (*UpdateCredentialSelfParams) WithBody

WithBody adds the body to the update credential self params

func (*UpdateCredentialSelfParams) WithContext

WithContext adds the context to the update credential self params

func (*UpdateCredentialSelfParams) WithDefaults

WithDefaults hydrates default values in the update credential self params (not the query body).

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

func (*UpdateCredentialSelfParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update credential self params

func (*UpdateCredentialSelfParams) WithTimeout

WithTimeout adds the timeout to the update credential self params

func (*UpdateCredentialSelfParams) WithXRequestID

func (o *UpdateCredentialSelfParams) WithXRequestID(xRequestID *string) *UpdateCredentialSelfParams

WithXRequestID adds the xRequestID to the update credential self params

func (*UpdateCredentialSelfParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateCredentialSelfReader

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

UpdateCredentialSelfReader is a Reader for the UpdateCredentialSelf structure.

func (*UpdateCredentialSelfReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateCredentialSelfUnauthorized

type UpdateCredentialSelfUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialSelfUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateCredentialSelfUnauthorized

func NewUpdateCredentialSelfUnauthorized() *UpdateCredentialSelfUnauthorized

NewUpdateCredentialSelfUnauthorized creates a UpdateCredentialSelfUnauthorized with default headers values

func (*UpdateCredentialSelfUnauthorized) Error

func (*UpdateCredentialSelfUnauthorized) GetPayload

type UpdateCredentialUnauthorized

type UpdateCredentialUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateCredentialUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateCredentialUnauthorized

func NewUpdateCredentialUnauthorized() *UpdateCredentialUnauthorized

NewUpdateCredentialUnauthorized creates a UpdateCredentialUnauthorized with default headers values

func (*UpdateCredentialUnauthorized) Error

func (*UpdateCredentialUnauthorized) GetPayload

type UpdateEnterprise2Conflict

type UpdateEnterprise2Conflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2Conflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing enterprise record.

func NewUpdateEnterprise2Conflict

func NewUpdateEnterprise2Conflict() *UpdateEnterprise2Conflict

NewUpdateEnterprise2Conflict creates a UpdateEnterprise2Conflict with default headers values

func (*UpdateEnterprise2Conflict) Error

func (o *UpdateEnterprise2Conflict) Error() string

func (*UpdateEnterprise2Conflict) GetPayload

type UpdateEnterprise2Forbidden

type UpdateEnterprise2Forbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2Forbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateEnterprise2Forbidden

func NewUpdateEnterprise2Forbidden() *UpdateEnterprise2Forbidden

NewUpdateEnterprise2Forbidden creates a UpdateEnterprise2Forbidden with default headers values

func (*UpdateEnterprise2Forbidden) Error

func (*UpdateEnterprise2Forbidden) GetPayload

type UpdateEnterprise2GatewayTimeout

type UpdateEnterprise2GatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2GatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateEnterprise2GatewayTimeout

func NewUpdateEnterprise2GatewayTimeout() *UpdateEnterprise2GatewayTimeout

NewUpdateEnterprise2GatewayTimeout creates a UpdateEnterprise2GatewayTimeout with default headers values

func (*UpdateEnterprise2GatewayTimeout) Error

func (*UpdateEnterprise2GatewayTimeout) GetPayload

type UpdateEnterprise2InternalServerError

type UpdateEnterprise2InternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2InternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateEnterprise2InternalServerError

func NewUpdateEnterprise2InternalServerError() *UpdateEnterprise2InternalServerError

NewUpdateEnterprise2InternalServerError creates a UpdateEnterprise2InternalServerError with default headers values

func (*UpdateEnterprise2InternalServerError) Error

func (*UpdateEnterprise2InternalServerError) GetPayload

type UpdateEnterprise2NotFound

type UpdateEnterprise2NotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2NotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateEnterprise2NotFound

func NewUpdateEnterprise2NotFound() *UpdateEnterprise2NotFound

NewUpdateEnterprise2NotFound creates a UpdateEnterprise2NotFound with default headers values

func (*UpdateEnterprise2NotFound) Error

func (o *UpdateEnterprise2NotFound) Error() string

func (*UpdateEnterprise2NotFound) GetPayload

type UpdateEnterprise2OK

type UpdateEnterprise2OK struct {
	Payload *swagger_models.CrudResponse
}
UpdateEnterprise2OK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateEnterprise2OK

func NewUpdateEnterprise2OK() *UpdateEnterprise2OK

NewUpdateEnterprise2OK creates a UpdateEnterprise2OK with default headers values

func (*UpdateEnterprise2OK) Error

func (o *UpdateEnterprise2OK) Error() string

func (*UpdateEnterprise2OK) GetPayload

type UpdateEnterprise2Params

type UpdateEnterprise2Params struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Enterprise

	/* ID.

	   Unique system defined enterprise ID
	*/
	ID string

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

UpdateEnterprise2Params contains all the parameters to send to the API endpoint

for the update enterprise2 operation.

Typically these are written to a http.Request.

func NewUpdateEnterprise2Params

func NewUpdateEnterprise2Params() *UpdateEnterprise2Params

NewUpdateEnterprise2Params creates a new UpdateEnterprise2Params 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 NewUpdateEnterprise2ParamsWithContext

func NewUpdateEnterprise2ParamsWithContext(ctx context.Context) *UpdateEnterprise2Params

NewUpdateEnterprise2ParamsWithContext creates a new UpdateEnterprise2Params object with the ability to set a context for a request.

func NewUpdateEnterprise2ParamsWithHTTPClient

func NewUpdateEnterprise2ParamsWithHTTPClient(client *http.Client) *UpdateEnterprise2Params

NewUpdateEnterprise2ParamsWithHTTPClient creates a new UpdateEnterprise2Params object with the ability to set a custom HTTPClient for a request.

func NewUpdateEnterprise2ParamsWithTimeout

func NewUpdateEnterprise2ParamsWithTimeout(timeout time.Duration) *UpdateEnterprise2Params

NewUpdateEnterprise2ParamsWithTimeout creates a new UpdateEnterprise2Params object with the ability to set a timeout on a request.

func (*UpdateEnterprise2Params) SetBody

SetBody adds the body to the update enterprise2 params

func (*UpdateEnterprise2Params) SetContext

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

SetContext adds the context to the update enterprise2 params

func (*UpdateEnterprise2Params) SetDefaults

func (o *UpdateEnterprise2Params) SetDefaults()

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

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

func (*UpdateEnterprise2Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update enterprise2 params

func (*UpdateEnterprise2Params) SetID

func (o *UpdateEnterprise2Params) SetID(id string)

SetID adds the id to the update enterprise2 params

func (*UpdateEnterprise2Params) SetTimeout

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

SetTimeout adds the timeout to the update enterprise2 params

func (*UpdateEnterprise2Params) SetXRequestID

func (o *UpdateEnterprise2Params) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update enterprise2 params

func (*UpdateEnterprise2Params) WithBody

WithBody adds the body to the update enterprise2 params

func (*UpdateEnterprise2Params) WithContext

WithContext adds the context to the update enterprise2 params

func (*UpdateEnterprise2Params) WithDefaults

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

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

func (*UpdateEnterprise2Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update enterprise2 params

func (*UpdateEnterprise2Params) WithID

WithID adds the id to the update enterprise2 params

func (*UpdateEnterprise2Params) WithTimeout

WithTimeout adds the timeout to the update enterprise2 params

func (*UpdateEnterprise2Params) WithXRequestID

func (o *UpdateEnterprise2Params) WithXRequestID(xRequestID *string) *UpdateEnterprise2Params

WithXRequestID adds the xRequestID to the update enterprise2 params

func (*UpdateEnterprise2Params) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateEnterprise2Reader

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

UpdateEnterprise2Reader is a Reader for the UpdateEnterprise2 structure.

func (*UpdateEnterprise2Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateEnterprise2Unauthorized

type UpdateEnterprise2Unauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterprise2Unauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateEnterprise2Unauthorized

func NewUpdateEnterprise2Unauthorized() *UpdateEnterprise2Unauthorized

NewUpdateEnterprise2Unauthorized creates a UpdateEnterprise2Unauthorized with default headers values

func (*UpdateEnterprise2Unauthorized) Error

func (*UpdateEnterprise2Unauthorized) GetPayload

type UpdateEnterpriseConflict

type UpdateEnterpriseConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing enterprise record.

func NewUpdateEnterpriseConflict

func NewUpdateEnterpriseConflict() *UpdateEnterpriseConflict

NewUpdateEnterpriseConflict creates a UpdateEnterpriseConflict with default headers values

func (*UpdateEnterpriseConflict) Error

func (o *UpdateEnterpriseConflict) Error() string

func (*UpdateEnterpriseConflict) GetPayload

type UpdateEnterpriseForbidden

type UpdateEnterpriseForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateEnterpriseForbidden

func NewUpdateEnterpriseForbidden() *UpdateEnterpriseForbidden

NewUpdateEnterpriseForbidden creates a UpdateEnterpriseForbidden with default headers values

func (*UpdateEnterpriseForbidden) Error

func (o *UpdateEnterpriseForbidden) Error() string

func (*UpdateEnterpriseForbidden) GetPayload

type UpdateEnterpriseGatewayTimeout

type UpdateEnterpriseGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateEnterpriseGatewayTimeout

func NewUpdateEnterpriseGatewayTimeout() *UpdateEnterpriseGatewayTimeout

NewUpdateEnterpriseGatewayTimeout creates a UpdateEnterpriseGatewayTimeout with default headers values

func (*UpdateEnterpriseGatewayTimeout) Error

func (*UpdateEnterpriseGatewayTimeout) GetPayload

type UpdateEnterpriseInternalServerError

type UpdateEnterpriseInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateEnterpriseInternalServerError

func NewUpdateEnterpriseInternalServerError() *UpdateEnterpriseInternalServerError

NewUpdateEnterpriseInternalServerError creates a UpdateEnterpriseInternalServerError with default headers values

func (*UpdateEnterpriseInternalServerError) Error

func (*UpdateEnterpriseInternalServerError) GetPayload

type UpdateEnterpriseNotFound

type UpdateEnterpriseNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateEnterpriseNotFound

func NewUpdateEnterpriseNotFound() *UpdateEnterpriseNotFound

NewUpdateEnterpriseNotFound creates a UpdateEnterpriseNotFound with default headers values

func (*UpdateEnterpriseNotFound) Error

func (o *UpdateEnterpriseNotFound) Error() string

func (*UpdateEnterpriseNotFound) GetPayload

type UpdateEnterpriseOK

type UpdateEnterpriseOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateEnterpriseOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateEnterpriseOK

func NewUpdateEnterpriseOK() *UpdateEnterpriseOK

NewUpdateEnterpriseOK creates a UpdateEnterpriseOK with default headers values

func (*UpdateEnterpriseOK) Error

func (o *UpdateEnterpriseOK) Error() string

func (*UpdateEnterpriseOK) GetPayload

type UpdateEnterpriseParams

type UpdateEnterpriseParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Enterprise

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

UpdateEnterpriseParams contains all the parameters to send to the API endpoint

for the update enterprise operation.

Typically these are written to a http.Request.

func NewUpdateEnterpriseParams

func NewUpdateEnterpriseParams() *UpdateEnterpriseParams

NewUpdateEnterpriseParams creates a new UpdateEnterpriseParams 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 NewUpdateEnterpriseParamsWithContext

func NewUpdateEnterpriseParamsWithContext(ctx context.Context) *UpdateEnterpriseParams

NewUpdateEnterpriseParamsWithContext creates a new UpdateEnterpriseParams object with the ability to set a context for a request.

func NewUpdateEnterpriseParamsWithHTTPClient

func NewUpdateEnterpriseParamsWithHTTPClient(client *http.Client) *UpdateEnterpriseParams

NewUpdateEnterpriseParamsWithHTTPClient creates a new UpdateEnterpriseParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateEnterpriseParamsWithTimeout

func NewUpdateEnterpriseParamsWithTimeout(timeout time.Duration) *UpdateEnterpriseParams

NewUpdateEnterpriseParamsWithTimeout creates a new UpdateEnterpriseParams object with the ability to set a timeout on a request.

func (*UpdateEnterpriseParams) SetBody

SetBody adds the body to the update enterprise params

func (*UpdateEnterpriseParams) SetContext

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

SetContext adds the context to the update enterprise params

func (*UpdateEnterpriseParams) SetDefaults

func (o *UpdateEnterpriseParams) SetDefaults()

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

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

func (*UpdateEnterpriseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update enterprise params

func (*UpdateEnterpriseParams) SetTimeout

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

SetTimeout adds the timeout to the update enterprise params

func (*UpdateEnterpriseParams) SetXRequestID

func (o *UpdateEnterpriseParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update enterprise params

func (*UpdateEnterpriseParams) WithBody

WithBody adds the body to the update enterprise params

func (*UpdateEnterpriseParams) WithContext

WithContext adds the context to the update enterprise params

func (*UpdateEnterpriseParams) WithDefaults

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

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

func (*UpdateEnterpriseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update enterprise params

func (*UpdateEnterpriseParams) WithTimeout

WithTimeout adds the timeout to the update enterprise params

func (*UpdateEnterpriseParams) WithXRequestID

func (o *UpdateEnterpriseParams) WithXRequestID(xRequestID *string) *UpdateEnterpriseParams

WithXRequestID adds the xRequestID to the update enterprise params

func (*UpdateEnterpriseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateEnterpriseReader

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

UpdateEnterpriseReader is a Reader for the UpdateEnterprise structure.

func (*UpdateEnterpriseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateEnterpriseUnauthorized

type UpdateEnterpriseUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateEnterpriseUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateEnterpriseUnauthorized

func NewUpdateEnterpriseUnauthorized() *UpdateEnterpriseUnauthorized

NewUpdateEnterpriseUnauthorized creates a UpdateEnterpriseUnauthorized with default headers values

func (*UpdateEnterpriseUnauthorized) Error

func (*UpdateEnterpriseUnauthorized) GetPayload

type UpdateRealmConflict

type UpdateRealmConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing realm.

func NewUpdateRealmConflict

func NewUpdateRealmConflict() *UpdateRealmConflict

NewUpdateRealmConflict creates a UpdateRealmConflict with default headers values

func (*UpdateRealmConflict) Error

func (o *UpdateRealmConflict) Error() string

func (*UpdateRealmConflict) GetPayload

type UpdateRealmForbidden

type UpdateRealmForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateRealmForbidden

func NewUpdateRealmForbidden() *UpdateRealmForbidden

NewUpdateRealmForbidden creates a UpdateRealmForbidden with default headers values

func (*UpdateRealmForbidden) Error

func (o *UpdateRealmForbidden) Error() string

func (*UpdateRealmForbidden) GetPayload

type UpdateRealmGatewayTimeout

type UpdateRealmGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateRealmGatewayTimeout

func NewUpdateRealmGatewayTimeout() *UpdateRealmGatewayTimeout

NewUpdateRealmGatewayTimeout creates a UpdateRealmGatewayTimeout with default headers values

func (*UpdateRealmGatewayTimeout) Error

func (o *UpdateRealmGatewayTimeout) Error() string

func (*UpdateRealmGatewayTimeout) GetPayload

type UpdateRealmInternalServerError

type UpdateRealmInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateRealmInternalServerError

func NewUpdateRealmInternalServerError() *UpdateRealmInternalServerError

NewUpdateRealmInternalServerError creates a UpdateRealmInternalServerError with default headers values

func (*UpdateRealmInternalServerError) Error

func (*UpdateRealmInternalServerError) GetPayload

type UpdateRealmNotFound

type UpdateRealmNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateRealmNotFound

func NewUpdateRealmNotFound() *UpdateRealmNotFound

NewUpdateRealmNotFound creates a UpdateRealmNotFound with default headers values

func (*UpdateRealmNotFound) Error

func (o *UpdateRealmNotFound) Error() string

func (*UpdateRealmNotFound) GetPayload

type UpdateRealmOK

type UpdateRealmOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateRealmOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateRealmOK

func NewUpdateRealmOK() *UpdateRealmOK

NewUpdateRealmOK creates a UpdateRealmOK with default headers values

func (*UpdateRealmOK) Error

func (o *UpdateRealmOK) Error() string

func (*UpdateRealmOK) GetPayload

func (o *UpdateRealmOK) GetPayload() *swagger_models.CrudResponse

type UpdateRealmParams

type UpdateRealmParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Realm

	/* ID.

	   Unique system defined realm ID
	*/
	ID string

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

UpdateRealmParams contains all the parameters to send to the API endpoint

for the update realm operation.

Typically these are written to a http.Request.

func NewUpdateRealmParams

func NewUpdateRealmParams() *UpdateRealmParams

NewUpdateRealmParams creates a new UpdateRealmParams 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 NewUpdateRealmParamsWithContext

func NewUpdateRealmParamsWithContext(ctx context.Context) *UpdateRealmParams

NewUpdateRealmParamsWithContext creates a new UpdateRealmParams object with the ability to set a context for a request.

func NewUpdateRealmParamsWithHTTPClient

func NewUpdateRealmParamsWithHTTPClient(client *http.Client) *UpdateRealmParams

NewUpdateRealmParamsWithHTTPClient creates a new UpdateRealmParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRealmParamsWithTimeout

func NewUpdateRealmParamsWithTimeout(timeout time.Duration) *UpdateRealmParams

NewUpdateRealmParamsWithTimeout creates a new UpdateRealmParams object with the ability to set a timeout on a request.

func (*UpdateRealmParams) SetBody

func (o *UpdateRealmParams) SetBody(body *swagger_models.Realm)

SetBody adds the body to the update realm params

func (*UpdateRealmParams) SetContext

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

SetContext adds the context to the update realm params

func (*UpdateRealmParams) SetDefaults

func (o *UpdateRealmParams) SetDefaults()

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

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

func (*UpdateRealmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update realm params

func (*UpdateRealmParams) SetID

func (o *UpdateRealmParams) SetID(id string)

SetID adds the id to the update realm params

func (*UpdateRealmParams) SetTimeout

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

SetTimeout adds the timeout to the update realm params

func (*UpdateRealmParams) SetXRequestID

func (o *UpdateRealmParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update realm params

func (*UpdateRealmParams) WithBody

WithBody adds the body to the update realm params

func (*UpdateRealmParams) WithContext

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

WithContext adds the context to the update realm params

func (*UpdateRealmParams) WithDefaults

func (o *UpdateRealmParams) WithDefaults() *UpdateRealmParams

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

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

func (*UpdateRealmParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update realm params

func (*UpdateRealmParams) WithID

WithID adds the id to the update realm params

func (*UpdateRealmParams) WithTimeout

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

WithTimeout adds the timeout to the update realm params

func (*UpdateRealmParams) WithXRequestID

func (o *UpdateRealmParams) WithXRequestID(xRequestID *string) *UpdateRealmParams

WithXRequestID adds the xRequestID to the update realm params

func (*UpdateRealmParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateRealmReader

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

UpdateRealmReader is a Reader for the UpdateRealm structure.

func (*UpdateRealmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRealmUnauthorized

type UpdateRealmUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRealmUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateRealmUnauthorized

func NewUpdateRealmUnauthorized() *UpdateRealmUnauthorized

NewUpdateRealmUnauthorized creates a UpdateRealmUnauthorized with default headers values

func (*UpdateRealmUnauthorized) Error

func (o *UpdateRealmUnauthorized) Error() string

func (*UpdateRealmUnauthorized) GetPayload

type UpdateRoleConflict

type UpdateRoleConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing IAM role record.

func NewUpdateRoleConflict

func NewUpdateRoleConflict() *UpdateRoleConflict

NewUpdateRoleConflict creates a UpdateRoleConflict with default headers values

func (*UpdateRoleConflict) Error

func (o *UpdateRoleConflict) Error() string

func (*UpdateRoleConflict) GetPayload

type UpdateRoleForbidden

type UpdateRoleForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateRoleForbidden

func NewUpdateRoleForbidden() *UpdateRoleForbidden

NewUpdateRoleForbidden creates a UpdateRoleForbidden with default headers values

func (*UpdateRoleForbidden) Error

func (o *UpdateRoleForbidden) Error() string

func (*UpdateRoleForbidden) GetPayload

type UpdateRoleGatewayTimeout

type UpdateRoleGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateRoleGatewayTimeout

func NewUpdateRoleGatewayTimeout() *UpdateRoleGatewayTimeout

NewUpdateRoleGatewayTimeout creates a UpdateRoleGatewayTimeout with default headers values

func (*UpdateRoleGatewayTimeout) Error

func (o *UpdateRoleGatewayTimeout) Error() string

func (*UpdateRoleGatewayTimeout) GetPayload

type UpdateRoleInternalServerError

type UpdateRoleInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateRoleInternalServerError

func NewUpdateRoleInternalServerError() *UpdateRoleInternalServerError

NewUpdateRoleInternalServerError creates a UpdateRoleInternalServerError with default headers values

func (*UpdateRoleInternalServerError) Error

func (*UpdateRoleInternalServerError) GetPayload

type UpdateRoleNotFound

type UpdateRoleNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateRoleNotFound

func NewUpdateRoleNotFound() *UpdateRoleNotFound

NewUpdateRoleNotFound creates a UpdateRoleNotFound with default headers values

func (*UpdateRoleNotFound) Error

func (o *UpdateRoleNotFound) Error() string

func (*UpdateRoleNotFound) GetPayload

type UpdateRoleOK

type UpdateRoleOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateRoleOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateRoleOK

func NewUpdateRoleOK() *UpdateRoleOK

NewUpdateRoleOK creates a UpdateRoleOK with default headers values

func (*UpdateRoleOK) Error

func (o *UpdateRoleOK) Error() string

func (*UpdateRoleOK) GetPayload

func (o *UpdateRoleOK) GetPayload() *swagger_models.CrudResponse

type UpdateRoleParams

type UpdateRoleParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.Role

	/* ID.

	   Unique system defined role ID
	*/
	ID string

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

UpdateRoleParams contains all the parameters to send to the API endpoint

for the update role operation.

Typically these are written to a http.Request.

func NewUpdateRoleParams

func NewUpdateRoleParams() *UpdateRoleParams

NewUpdateRoleParams creates a new UpdateRoleParams 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 NewUpdateRoleParamsWithContext

func NewUpdateRoleParamsWithContext(ctx context.Context) *UpdateRoleParams

NewUpdateRoleParamsWithContext creates a new UpdateRoleParams object with the ability to set a context for a request.

func NewUpdateRoleParamsWithHTTPClient

func NewUpdateRoleParamsWithHTTPClient(client *http.Client) *UpdateRoleParams

NewUpdateRoleParamsWithHTTPClient creates a new UpdateRoleParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRoleParamsWithTimeout

func NewUpdateRoleParamsWithTimeout(timeout time.Duration) *UpdateRoleParams

NewUpdateRoleParamsWithTimeout creates a new UpdateRoleParams object with the ability to set a timeout on a request.

func (*UpdateRoleParams) SetBody

func (o *UpdateRoleParams) SetBody(body *swagger_models.Role)

SetBody adds the body to the update role params

func (*UpdateRoleParams) SetContext

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

SetContext adds the context to the update role params

func (*UpdateRoleParams) SetDefaults

func (o *UpdateRoleParams) SetDefaults()

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

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

func (*UpdateRoleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update role params

func (*UpdateRoleParams) SetID

func (o *UpdateRoleParams) SetID(id string)

SetID adds the id to the update role params

func (*UpdateRoleParams) SetTimeout

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

SetTimeout adds the timeout to the update role params

func (*UpdateRoleParams) SetXRequestID

func (o *UpdateRoleParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update role params

func (*UpdateRoleParams) WithBody

WithBody adds the body to the update role params

func (*UpdateRoleParams) WithContext

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

WithContext adds the context to the update role params

func (*UpdateRoleParams) WithDefaults

func (o *UpdateRoleParams) WithDefaults() *UpdateRoleParams

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

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

func (*UpdateRoleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update role params

func (*UpdateRoleParams) WithID

func (o *UpdateRoleParams) WithID(id string) *UpdateRoleParams

WithID adds the id to the update role params

func (*UpdateRoleParams) WithTimeout

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

WithTimeout adds the timeout to the update role params

func (*UpdateRoleParams) WithXRequestID

func (o *UpdateRoleParams) WithXRequestID(xRequestID *string) *UpdateRoleParams

WithXRequestID adds the xRequestID to the update role params

func (*UpdateRoleParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateRoleReader

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

UpdateRoleReader is a Reader for the UpdateRole structure.

func (*UpdateRoleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRoleUnauthorized

type UpdateRoleUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateRoleUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateRoleUnauthorized

func NewUpdateRoleUnauthorized() *UpdateRoleUnauthorized

NewUpdateRoleUnauthorized creates a UpdateRoleUnauthorized with default headers values

func (*UpdateRoleUnauthorized) Error

func (o *UpdateRoleUnauthorized) Error() string

func (*UpdateRoleUnauthorized) GetPayload

type UpdateUser2Conflict

type UpdateUser2Conflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2Conflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing IAM user record.

func NewUpdateUser2Conflict

func NewUpdateUser2Conflict() *UpdateUser2Conflict

NewUpdateUser2Conflict creates a UpdateUser2Conflict with default headers values

func (*UpdateUser2Conflict) Error

func (o *UpdateUser2Conflict) Error() string

func (*UpdateUser2Conflict) GetPayload

type UpdateUser2Forbidden

type UpdateUser2Forbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2Forbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateUser2Forbidden

func NewUpdateUser2Forbidden() *UpdateUser2Forbidden

NewUpdateUser2Forbidden creates a UpdateUser2Forbidden with default headers values

func (*UpdateUser2Forbidden) Error

func (o *UpdateUser2Forbidden) Error() string

func (*UpdateUser2Forbidden) GetPayload

type UpdateUser2GatewayTimeout

type UpdateUser2GatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2GatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateUser2GatewayTimeout

func NewUpdateUser2GatewayTimeout() *UpdateUser2GatewayTimeout

NewUpdateUser2GatewayTimeout creates a UpdateUser2GatewayTimeout with default headers values

func (*UpdateUser2GatewayTimeout) Error

func (o *UpdateUser2GatewayTimeout) Error() string

func (*UpdateUser2GatewayTimeout) GetPayload

type UpdateUser2InternalServerError

type UpdateUser2InternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2InternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateUser2InternalServerError

func NewUpdateUser2InternalServerError() *UpdateUser2InternalServerError

NewUpdateUser2InternalServerError creates a UpdateUser2InternalServerError with default headers values

func (*UpdateUser2InternalServerError) Error

func (*UpdateUser2InternalServerError) GetPayload

type UpdateUser2NotFound

type UpdateUser2NotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2NotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateUser2NotFound

func NewUpdateUser2NotFound() *UpdateUser2NotFound

NewUpdateUser2NotFound creates a UpdateUser2NotFound with default headers values

func (*UpdateUser2NotFound) Error

func (o *UpdateUser2NotFound) Error() string

func (*UpdateUser2NotFound) GetPayload

type UpdateUser2OK

type UpdateUser2OK struct {
	Payload *swagger_models.CrudResponse
}
UpdateUser2OK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateUser2OK

func NewUpdateUser2OK() *UpdateUser2OK

NewUpdateUser2OK creates a UpdateUser2OK with default headers values

func (*UpdateUser2OK) Error

func (o *UpdateUser2OK) Error() string

func (*UpdateUser2OK) GetPayload

func (o *UpdateUser2OK) GetPayload() *swagger_models.CrudResponse

type UpdateUser2Params

type UpdateUser2Params struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.DetailedUser

	/* ID.

	   Unique system defined user ID
	*/
	ID string

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

UpdateUser2Params contains all the parameters to send to the API endpoint

for the update user2 operation.

Typically these are written to a http.Request.

func NewUpdateUser2Params

func NewUpdateUser2Params() *UpdateUser2Params

NewUpdateUser2Params creates a new UpdateUser2Params 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 NewUpdateUser2ParamsWithContext

func NewUpdateUser2ParamsWithContext(ctx context.Context) *UpdateUser2Params

NewUpdateUser2ParamsWithContext creates a new UpdateUser2Params object with the ability to set a context for a request.

func NewUpdateUser2ParamsWithHTTPClient

func NewUpdateUser2ParamsWithHTTPClient(client *http.Client) *UpdateUser2Params

NewUpdateUser2ParamsWithHTTPClient creates a new UpdateUser2Params object with the ability to set a custom HTTPClient for a request.

func NewUpdateUser2ParamsWithTimeout

func NewUpdateUser2ParamsWithTimeout(timeout time.Duration) *UpdateUser2Params

NewUpdateUser2ParamsWithTimeout creates a new UpdateUser2Params object with the ability to set a timeout on a request.

func (*UpdateUser2Params) SetBody

func (o *UpdateUser2Params) SetBody(body *swagger_models.DetailedUser)

SetBody adds the body to the update user2 params

func (*UpdateUser2Params) SetContext

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

SetContext adds the context to the update user2 params

func (*UpdateUser2Params) SetDefaults

func (o *UpdateUser2Params) SetDefaults()

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

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

func (*UpdateUser2Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update user2 params

func (*UpdateUser2Params) SetID

func (o *UpdateUser2Params) SetID(id string)

SetID adds the id to the update user2 params

func (*UpdateUser2Params) SetTimeout

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

SetTimeout adds the timeout to the update user2 params

func (*UpdateUser2Params) SetXRequestID

func (o *UpdateUser2Params) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update user2 params

func (*UpdateUser2Params) WithBody

WithBody adds the body to the update user2 params

func (*UpdateUser2Params) WithContext

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

WithContext adds the context to the update user2 params

func (*UpdateUser2Params) WithDefaults

func (o *UpdateUser2Params) WithDefaults() *UpdateUser2Params

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

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

func (*UpdateUser2Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update user2 params

func (*UpdateUser2Params) WithID

WithID adds the id to the update user2 params

func (*UpdateUser2Params) WithTimeout

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

WithTimeout adds the timeout to the update user2 params

func (*UpdateUser2Params) WithXRequestID

func (o *UpdateUser2Params) WithXRequestID(xRequestID *string) *UpdateUser2Params

WithXRequestID adds the xRequestID to the update user2 params

func (*UpdateUser2Params) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateUser2Reader

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

UpdateUser2Reader is a Reader for the UpdateUser2 structure.

func (*UpdateUser2Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateUser2Unauthorized

type UpdateUser2Unauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUser2Unauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateUser2Unauthorized

func NewUpdateUser2Unauthorized() *UpdateUser2Unauthorized

NewUpdateUser2Unauthorized creates a UpdateUser2Unauthorized with default headers values

func (*UpdateUser2Unauthorized) Error

func (o *UpdateUser2Unauthorized) Error() string

func (*UpdateUser2Unauthorized) GetPayload

type UpdateUserConflict

type UpdateUserConflict struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserConflict describes a response with status code 409, with default header values.

Conflict. The API gateway did not process the request because this operation will conflict with an already existing IAM user record.

func NewUpdateUserConflict

func NewUpdateUserConflict() *UpdateUserConflict

NewUpdateUserConflict creates a UpdateUserConflict with default headers values

func (*UpdateUserConflict) Error

func (o *UpdateUserConflict) Error() string

func (*UpdateUserConflict) GetPayload

type UpdateUserForbidden

type UpdateUserForbidden struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserForbidden describes a response with status code 403, with default header values.

Forbidden. The API gateway did not process the request because the requestor does not have edge-node level access permission for the operation or does not have access scope to the project.

func NewUpdateUserForbidden

func NewUpdateUserForbidden() *UpdateUserForbidden

NewUpdateUserForbidden creates a UpdateUserForbidden with default headers values

func (*UpdateUserForbidden) Error

func (o *UpdateUserForbidden) Error() string

func (*UpdateUserForbidden) GetPayload

type UpdateUserGatewayTimeout

type UpdateUserGatewayTimeout struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserGatewayTimeout describes a response with status code 504, with default header values.

Gateway Timeout. The API gateway did not receive a timely response from an upstream microservice it needed to communicate with in order to complete the request.

func NewUpdateUserGatewayTimeout

func NewUpdateUserGatewayTimeout() *UpdateUserGatewayTimeout

NewUpdateUserGatewayTimeout creates a UpdateUserGatewayTimeout with default headers values

func (*UpdateUserGatewayTimeout) Error

func (o *UpdateUserGatewayTimeout) Error() string

func (*UpdateUserGatewayTimeout) GetPayload

type UpdateUserInternalServerError

type UpdateUserInternalServerError struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserInternalServerError describes a response with status code 500, with default header values.

Internal Server Error. The API gateway experienced an unexpected condition. Specific error condition is indicated in error codes.

func NewUpdateUserInternalServerError

func NewUpdateUserInternalServerError() *UpdateUserInternalServerError

NewUpdateUserInternalServerError creates a UpdateUserInternalServerError with default headers values

func (*UpdateUserInternalServerError) Error

func (*UpdateUserInternalServerError) GetPayload

type UpdateUserNotFound

type UpdateUserNotFound struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserNotFound describes a response with status code 404, with default header values.

Not Found. The API gateway did not process the request because the requested resource could not be found.

func NewUpdateUserNotFound

func NewUpdateUserNotFound() *UpdateUserNotFound

NewUpdateUserNotFound creates a UpdateUserNotFound with default headers values

func (*UpdateUserNotFound) Error

func (o *UpdateUserNotFound) Error() string

func (*UpdateUserNotFound) GetPayload

type UpdateUserOK

type UpdateUserOK struct {
	Payload *swagger_models.CrudResponse
}
UpdateUserOK describes a response with status code 200, with default header values.

A successful response.

func NewUpdateUserOK

func NewUpdateUserOK() *UpdateUserOK

NewUpdateUserOK creates a UpdateUserOK with default headers values

func (*UpdateUserOK) Error

func (o *UpdateUserOK) Error() string

func (*UpdateUserOK) GetPayload

func (o *UpdateUserOK) GetPayload() *swagger_models.CrudResponse

type UpdateUserParams

type UpdateUserParams struct {

	/* XRequestID.

	   User-Agent specified id to track a request
	*/
	XRequestID *string

	// Body.
	Body *swagger_models.DetailedUser

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

UpdateUserParams contains all the parameters to send to the API endpoint

for the update user operation.

Typically these are written to a http.Request.

func NewUpdateUserParams

func NewUpdateUserParams() *UpdateUserParams

NewUpdateUserParams creates a new UpdateUserParams 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 NewUpdateUserParamsWithContext

func NewUpdateUserParamsWithContext(ctx context.Context) *UpdateUserParams

NewUpdateUserParamsWithContext creates a new UpdateUserParams object with the ability to set a context for a request.

func NewUpdateUserParamsWithHTTPClient

func NewUpdateUserParamsWithHTTPClient(client *http.Client) *UpdateUserParams

NewUpdateUserParamsWithHTTPClient creates a new UpdateUserParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateUserParamsWithTimeout

func NewUpdateUserParamsWithTimeout(timeout time.Duration) *UpdateUserParams

NewUpdateUserParamsWithTimeout creates a new UpdateUserParams object with the ability to set a timeout on a request.

func (*UpdateUserParams) SetBody

func (o *UpdateUserParams) SetBody(body *swagger_models.DetailedUser)

SetBody adds the body to the update user params

func (*UpdateUserParams) SetContext

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

SetContext adds the context to the update user params

func (*UpdateUserParams) SetDefaults

func (o *UpdateUserParams) SetDefaults()

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

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

func (*UpdateUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update user params

func (*UpdateUserParams) SetTimeout

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

SetTimeout adds the timeout to the update user params

func (*UpdateUserParams) SetXRequestID

func (o *UpdateUserParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the update user params

func (*UpdateUserParams) WithBody

WithBody adds the body to the update user params

func (*UpdateUserParams) WithContext

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

WithContext adds the context to the update user params

func (*UpdateUserParams) WithDefaults

func (o *UpdateUserParams) WithDefaults() *UpdateUserParams

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

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

func (*UpdateUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update user params

func (*UpdateUserParams) WithTimeout

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

WithTimeout adds the timeout to the update user params

func (*UpdateUserParams) WithXRequestID

func (o *UpdateUserParams) WithXRequestID(xRequestID *string) *UpdateUserParams

WithXRequestID adds the xRequestID to the update user params

func (*UpdateUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateUserReader

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

UpdateUserReader is a Reader for the UpdateUser structure.

func (*UpdateUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateUserUnauthorized

type UpdateUserUnauthorized struct {
	Payload *swagger_models.ZsrvResponse
}
UpdateUserUnauthorized describes a response with status code 401, with default header values.

Unauthorized. The API gateway did not process the request because it lacks valid authentication credentials for the target resource. The request header has either no authorization details or an authorization that has been refused.

func NewUpdateUserUnauthorized

func NewUpdateUserUnauthorized() *UpdateUserUnauthorized

NewUpdateUserUnauthorized creates a UpdateUserUnauthorized with default headers values

func (*UpdateUserUnauthorized) Error

func (o *UpdateUserUnauthorized) Error() string

func (*UpdateUserUnauthorized) GetPayload

Source Files

Jump to

Keyboard shortcuts

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