auth

package
v0.0.0-...-162d0cd Latest Latest
Warning

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

Go to latest
Published: Sep 25, 2019 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for auth API

func New

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

New creates a new auth API client.

func (*Client) CreateOidcTestConfig

func (a *Client) CreateOidcTestConfig(params *CreateOidcTestConfigParams) (*CreateOidcTestConfigOK, error)

CreateOidcTestConfig creates o ID c test configuration

### Create a OIDC test configuration.

func (*Client) CreateSamlTestConfig

func (a *Client) CreateSamlTestConfig(params *CreateSamlTestConfigParams) (*CreateSamlTestConfigOK, error)

CreateSamlTestConfig creates s a m l test configuration

### Create a SAML test configuration.

func (*Client) DeleteOidcTestConfig

func (a *Client) DeleteOidcTestConfig(params *DeleteOidcTestConfigParams) (*DeleteOidcTestConfigNoContent, error)

DeleteOidcTestConfig deletes o ID c test configuration

### Delete a OIDC test configuration.

func (*Client) DeleteSamlTestConfig

func (a *Client) DeleteSamlTestConfig(params *DeleteSamlTestConfigParams) (*DeleteSamlTestConfigNoContent, error)

DeleteSamlTestConfig deletes s a m l test configuration

### Delete a SAML test configuration.

func (*Client) FetchAndParseSamlIdpMetadata

func (a *Client) FetchAndParseSamlIdpMetadata(params *FetchAndParseSamlIdpMetadataParams) (*FetchAndParseSamlIdpMetadataOK, error)

FetchAndParseSamlIdpMetadata parses s a m l Id p Url

### Fetch the given url and parse it as a SAML IdP metadata document and return the result. Note that this requires that the url be public or at least at a location where the Looker instance can fetch it without requiring any special authentication.

func (*Client) LdapConfig

func (a *Client) LdapConfig(params *LdapConfigParams) (*LdapConfigOK, error)

LdapConfig gets l d a p configuration

### Get the LDAP configuration.

Looker can be optionally configured to authenticate users against an Active Directory or other LDAP directory server. LDAP setup requires coordination with an administrator of that directory server.

Only Looker administrators can read and update the LDAP configuration.

Configuring LDAP impacts authentication for all users. This configuration should be done carefully.

Looker maintains a single LDAP configuration. It can be read and updated. Updates only succeed if the new state will be valid (in the sense that all required fields are populated); it is up to you to ensure that the configuration is appropriate and correct).

LDAP is enabled or disabled for Looker using the **enabled** field.

Looker will never return an **auth_password** field. That value can be set, but never retrieved.

See the [Looker LDAP docs](https://www.looker.com/docs/r/api/ldap_setup) for additional information.

func (*Client) OidcConfig

func (a *Client) OidcConfig(params *OidcConfigParams) (*OidcConfigOK, error)

OidcConfig gets o ID c configuration

### Get the OIDC configuration.

Looker can be optionally configured to authenticate users against an OpenID Connect (OIDC) authentication server. OIDC setup requires coordination with an administrator of that server.

Only Looker administrators can read and update the OIDC configuration.

Configuring OIDC impacts authentication for all users. This configuration should be done carefully.

Looker maintains a single OIDC configuation. It can be read and updated. Updates only succeed if the new state will be valid (in the sense that all required fields are populated); it is up to you to ensure that the configuration is appropriate and correct).

OIDC is enabled or disabled for Looker using the **enabled** field.

func (*Client) OidcTestConfig

func (a *Client) OidcTestConfig(params *OidcTestConfigParams) (*OidcTestConfigOK, error)

OidcTestConfig gets o ID c test configuration

### Get a OIDC test configuration by test_slug.

func (*Client) ParseSamlIdpMetadata

func (a *Client) ParseSamlIdpMetadata(params *ParseSamlIdpMetadataParams) (*ParseSamlIdpMetadataOK, error)

ParseSamlIdpMetadata parses s a m l Id p XML

### Parse the given xml as a SAML IdP metadata document and return the result.

func (*Client) SamlConfig

func (a *Client) SamlConfig(params *SamlConfigParams) (*SamlConfigOK, error)

SamlConfig gets s a m l configuration

### Get the SAML configuration.

Looker can be optionally configured to authenticate users against a SAML authentication server. SAML setup requires coordination with an administrator of that server.

Only Looker administrators can read and update the SAML configuration.

Configuring SAML impacts authentication for all users. This configuration should be done carefully.

Looker maintains a single SAML configuation. It can be read and updated. Updates only succeed if the new state will be valid (in the sense that all required fields are populated); it is up to you to ensure that the configuration is appropriate and correct).

SAML is enabled or disabled for Looker using the **enabled** field.

func (*Client) SamlTestConfig

func (a *Client) SamlTestConfig(params *SamlTestConfigParams) (*SamlTestConfigOK, error)

SamlTestConfig gets s a m l test configuration

### Get a SAML test configuration by test_slug.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) TestLdapConfigAuth

func (a *Client) TestLdapConfigAuth(params *TestLdapConfigAuthParams) (*TestLdapConfigAuthOK, error)

TestLdapConfigAuth tests l d a p auth

### Test the connection authentication settings for an LDAP configuration.

This tests that the connection is possible and that a 'server' account to be used by Looker can authenticate to the LDAP server given connection and authentication information.

**connection_host**, **connection_port**, and **auth_username**, are required. **connection_tls** and **auth_password** are optional.

Example: ```json

{
  "connection_host": "ldap.example.com",
  "connection_port": "636",
  "connection_tls": true,
  "auth_username": "cn=looker,dc=example,dc=com",
  "auth_password": "secret"
}

```

Looker will never return an **auth_password**. If this request omits the **auth_password** field, then the **auth_password** value from the active config (if present) will be used for the test.

The active LDAP settings are not modified.

func (*Client) TestLdapConfigConnection

func (a *Client) TestLdapConfigConnection(params *TestLdapConfigConnectionParams) (*TestLdapConfigConnectionOK, error)

TestLdapConfigConnection tests l d a p connection

### Test the connection settings for an LDAP configuration.

This tests that the connection is possible given a connection_host and connection_port.

**connection_host** and **connection_port** are required. **connection_tls** is optional.

Example: ```json

{
  "connection_host": "ldap.example.com",
  "connection_port": "636",
  "connection_tls": true
}

```

No authentication to the LDAP server is attempted.

The active LDAP settings are not modified.

func (*Client) TestLdapConfigUserAuth

func (a *Client) TestLdapConfigUserAuth(params *TestLdapConfigUserAuthParams) (*TestLdapConfigUserAuthOK, error)

TestLdapConfigUserAuth tests l d a p user auth

### Test the user authentication settings for an LDAP configuration.

This test accepts a full LDAP configuration along with a username/password pair and attempts to authenticate the user with the LDAP server. The configuration is validated before attempting the authentication.

Looker will never return an **auth_password**. If this request omits the **auth_password** field, then the **auth_password** value from the active config (if present) will be used for the test.

**test_ldap_user** and **test_ldap_password** are required.

The active LDAP settings are not modified.

func (*Client) TestLdapConfigUserInfo

func (a *Client) TestLdapConfigUserInfo(params *TestLdapConfigUserInfoParams) (*TestLdapConfigUserInfoOK, error)

TestLdapConfigUserInfo tests l d a p user info

### Test the user authentication settings for an LDAP configuration without authenticating the user.

This test will let you easily test the mapping for user properties and roles for any user without needing to authenticate as that user.

This test accepts a full LDAP configuration along with a username and attempts to find the full info for the user from the LDAP server without actually authenticating the user. So, user password is not required.The configuration is validated before attempting to contact the server.

**test_ldap_user** is required.

The active LDAP settings are not modified.

func (*Client) UpdateLdapConfig

func (a *Client) UpdateLdapConfig(params *UpdateLdapConfigParams) (*UpdateLdapConfigOK, error)

UpdateLdapConfig updates l d a p configuration

### Update the LDAP configuration.

Configuring LDAP impacts authentication for all users. This configuration should be done carefully.

Only Looker administrators can read and update the LDAP configuration.

LDAP is enabled or disabled for Looker using the **enabled** field.

It is **highly** recommended that any LDAP setting changes be tested using the APIs below before being set globally.

See the [Looker LDAP docs](https://www.looker.com/docs/r/api/ldap_setup) for additional information.

func (*Client) UpdateOidcConfig

func (a *Client) UpdateOidcConfig(params *UpdateOidcConfigParams) (*UpdateOidcConfigOK, error)

UpdateOidcConfig updates o ID c configuration

### Update the OIDC configuration.

Configuring OIDC impacts authentication for all users. This configuration should be done carefully.

Only Looker administrators can read and update the OIDC configuration.

OIDC is enabled or disabled for Looker using the **enabled** field.

It is **highly** recommended that any OIDC setting changes be tested using the APIs below before being set globally.

func (*Client) UpdateSamlConfig

func (a *Client) UpdateSamlConfig(params *UpdateSamlConfigParams) (*UpdateSamlConfigOK, error)

UpdateSamlConfig updates s a m l configuration

### Update the SAML configuration.

Configuring SAML impacts authentication for all users. This configuration should be done carefully.

Only Looker administrators can read and update the SAML configuration.

SAML is enabled or disabled for Looker using the **enabled** field.

It is **highly** recommended that any SAML setting changes be tested using the APIs below before being set globally.

type CreateOidcTestConfigBadRequest

type CreateOidcTestConfigBadRequest struct {
	Payload *models.Error
}

CreateOidcTestConfigBadRequest handles this case with default header values.

Bad Request

func NewCreateOidcTestConfigBadRequest

func NewCreateOidcTestConfigBadRequest() *CreateOidcTestConfigBadRequest

NewCreateOidcTestConfigBadRequest creates a CreateOidcTestConfigBadRequest with default headers values

func (*CreateOidcTestConfigBadRequest) Error

type CreateOidcTestConfigNotFound

type CreateOidcTestConfigNotFound struct {
	Payload *models.Error
}

CreateOidcTestConfigNotFound handles this case with default header values.

Not Found

func NewCreateOidcTestConfigNotFound

func NewCreateOidcTestConfigNotFound() *CreateOidcTestConfigNotFound

NewCreateOidcTestConfigNotFound creates a CreateOidcTestConfigNotFound with default headers values

func (*CreateOidcTestConfigNotFound) Error

type CreateOidcTestConfigOK

type CreateOidcTestConfigOK struct {
	Payload *models.OIDCConfig
}

CreateOidcTestConfigOK handles this case with default header values.

OIDC test config

func NewCreateOidcTestConfigOK

func NewCreateOidcTestConfigOK() *CreateOidcTestConfigOK

NewCreateOidcTestConfigOK creates a CreateOidcTestConfigOK with default headers values

func (*CreateOidcTestConfigOK) Error

func (o *CreateOidcTestConfigOK) Error() string

type CreateOidcTestConfigParams

type CreateOidcTestConfigParams struct {

	/*Body
	  OIDC test config

	*/
	Body *models.OIDCConfig

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

CreateOidcTestConfigParams contains all the parameters to send to the API endpoint for the create oidc test config operation typically these are written to a http.Request

func NewCreateOidcTestConfigParams

func NewCreateOidcTestConfigParams() *CreateOidcTestConfigParams

NewCreateOidcTestConfigParams creates a new CreateOidcTestConfigParams object with the default values initialized.

func NewCreateOidcTestConfigParamsWithContext

func NewCreateOidcTestConfigParamsWithContext(ctx context.Context) *CreateOidcTestConfigParams

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

func NewCreateOidcTestConfigParamsWithHTTPClient

func NewCreateOidcTestConfigParamsWithHTTPClient(client *http.Client) *CreateOidcTestConfigParams

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

func NewCreateOidcTestConfigParamsWithTimeout

func NewCreateOidcTestConfigParamsWithTimeout(timeout time.Duration) *CreateOidcTestConfigParams

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

func (*CreateOidcTestConfigParams) SetBody

func (o *CreateOidcTestConfigParams) SetBody(body *models.OIDCConfig)

SetBody adds the body to the create oidc test config params

func (*CreateOidcTestConfigParams) SetContext

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

SetContext adds the context to the create oidc test config params

func (*CreateOidcTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create oidc test config params

func (*CreateOidcTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the create oidc test config params

func (*CreateOidcTestConfigParams) WithBody

WithBody adds the body to the create oidc test config params

func (*CreateOidcTestConfigParams) WithContext

WithContext adds the context to the create oidc test config params

func (*CreateOidcTestConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create oidc test config params

func (*CreateOidcTestConfigParams) WithTimeout

WithTimeout adds the timeout to the create oidc test config params

func (*CreateOidcTestConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateOidcTestConfigReader

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

CreateOidcTestConfigReader is a Reader for the CreateOidcTestConfig structure.

func (*CreateOidcTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateOidcTestConfigUnprocessableEntity

type CreateOidcTestConfigUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateOidcTestConfigUnprocessableEntity handles this case with default header values.

Validation Error

func NewCreateOidcTestConfigUnprocessableEntity

func NewCreateOidcTestConfigUnprocessableEntity() *CreateOidcTestConfigUnprocessableEntity

NewCreateOidcTestConfigUnprocessableEntity creates a CreateOidcTestConfigUnprocessableEntity with default headers values

func (*CreateOidcTestConfigUnprocessableEntity) Error

type CreateSamlTestConfigBadRequest

type CreateSamlTestConfigBadRequest struct {
	Payload *models.Error
}

CreateSamlTestConfigBadRequest handles this case with default header values.

Bad Request

func NewCreateSamlTestConfigBadRequest

func NewCreateSamlTestConfigBadRequest() *CreateSamlTestConfigBadRequest

NewCreateSamlTestConfigBadRequest creates a CreateSamlTestConfigBadRequest with default headers values

func (*CreateSamlTestConfigBadRequest) Error

type CreateSamlTestConfigNotFound

type CreateSamlTestConfigNotFound struct {
	Payload *models.Error
}

CreateSamlTestConfigNotFound handles this case with default header values.

Not Found

func NewCreateSamlTestConfigNotFound

func NewCreateSamlTestConfigNotFound() *CreateSamlTestConfigNotFound

NewCreateSamlTestConfigNotFound creates a CreateSamlTestConfigNotFound with default headers values

func (*CreateSamlTestConfigNotFound) Error

type CreateSamlTestConfigOK

type CreateSamlTestConfigOK struct {
	Payload *models.SamlConfig
}

CreateSamlTestConfigOK handles this case with default header values.

SAML test config

func NewCreateSamlTestConfigOK

func NewCreateSamlTestConfigOK() *CreateSamlTestConfigOK

NewCreateSamlTestConfigOK creates a CreateSamlTestConfigOK with default headers values

func (*CreateSamlTestConfigOK) Error

func (o *CreateSamlTestConfigOK) Error() string

type CreateSamlTestConfigParams

type CreateSamlTestConfigParams struct {

	/*Body
	  SAML test config

	*/
	Body *models.SamlConfig

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

CreateSamlTestConfigParams contains all the parameters to send to the API endpoint for the create saml test config operation typically these are written to a http.Request

func NewCreateSamlTestConfigParams

func NewCreateSamlTestConfigParams() *CreateSamlTestConfigParams

NewCreateSamlTestConfigParams creates a new CreateSamlTestConfigParams object with the default values initialized.

func NewCreateSamlTestConfigParamsWithContext

func NewCreateSamlTestConfigParamsWithContext(ctx context.Context) *CreateSamlTestConfigParams

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

func NewCreateSamlTestConfigParamsWithHTTPClient

func NewCreateSamlTestConfigParamsWithHTTPClient(client *http.Client) *CreateSamlTestConfigParams

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

func NewCreateSamlTestConfigParamsWithTimeout

func NewCreateSamlTestConfigParamsWithTimeout(timeout time.Duration) *CreateSamlTestConfigParams

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

func (*CreateSamlTestConfigParams) SetBody

func (o *CreateSamlTestConfigParams) SetBody(body *models.SamlConfig)

SetBody adds the body to the create saml test config params

func (*CreateSamlTestConfigParams) SetContext

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

SetContext adds the context to the create saml test config params

func (*CreateSamlTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create saml test config params

func (*CreateSamlTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the create saml test config params

func (*CreateSamlTestConfigParams) WithBody

WithBody adds the body to the create saml test config params

func (*CreateSamlTestConfigParams) WithContext

WithContext adds the context to the create saml test config params

func (*CreateSamlTestConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create saml test config params

func (*CreateSamlTestConfigParams) WithTimeout

WithTimeout adds the timeout to the create saml test config params

func (*CreateSamlTestConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateSamlTestConfigReader

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

CreateSamlTestConfigReader is a Reader for the CreateSamlTestConfig structure.

func (*CreateSamlTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateSamlTestConfigUnprocessableEntity

type CreateSamlTestConfigUnprocessableEntity struct {
	Payload *models.ValidationError
}

CreateSamlTestConfigUnprocessableEntity handles this case with default header values.

Validation Error

func NewCreateSamlTestConfigUnprocessableEntity

func NewCreateSamlTestConfigUnprocessableEntity() *CreateSamlTestConfigUnprocessableEntity

NewCreateSamlTestConfigUnprocessableEntity creates a CreateSamlTestConfigUnprocessableEntity with default headers values

func (*CreateSamlTestConfigUnprocessableEntity) Error

type DeleteOidcTestConfigBadRequest

type DeleteOidcTestConfigBadRequest struct {
	Payload *models.Error
}

DeleteOidcTestConfigBadRequest handles this case with default header values.

Bad Request

func NewDeleteOidcTestConfigBadRequest

func NewDeleteOidcTestConfigBadRequest() *DeleteOidcTestConfigBadRequest

NewDeleteOidcTestConfigBadRequest creates a DeleteOidcTestConfigBadRequest with default headers values

func (*DeleteOidcTestConfigBadRequest) Error

type DeleteOidcTestConfigNoContent

type DeleteOidcTestConfigNoContent struct {
	Payload string
}

DeleteOidcTestConfigNoContent handles this case with default header values.

Test config succssfully deleted.

func NewDeleteOidcTestConfigNoContent

func NewDeleteOidcTestConfigNoContent() *DeleteOidcTestConfigNoContent

NewDeleteOidcTestConfigNoContent creates a DeleteOidcTestConfigNoContent with default headers values

func (*DeleteOidcTestConfigNoContent) Error

type DeleteOidcTestConfigNotFound

type DeleteOidcTestConfigNotFound struct {
	Payload *models.Error
}

DeleteOidcTestConfigNotFound handles this case with default header values.

Not Found

func NewDeleteOidcTestConfigNotFound

func NewDeleteOidcTestConfigNotFound() *DeleteOidcTestConfigNotFound

NewDeleteOidcTestConfigNotFound creates a DeleteOidcTestConfigNotFound with default headers values

func (*DeleteOidcTestConfigNotFound) Error

type DeleteOidcTestConfigParams

type DeleteOidcTestConfigParams struct {

	/*TestSlug
	  Slug of test config

	*/
	TestSlug string

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

DeleteOidcTestConfigParams contains all the parameters to send to the API endpoint for the delete oidc test config operation typically these are written to a http.Request

func NewDeleteOidcTestConfigParams

func NewDeleteOidcTestConfigParams() *DeleteOidcTestConfigParams

NewDeleteOidcTestConfigParams creates a new DeleteOidcTestConfigParams object with the default values initialized.

func NewDeleteOidcTestConfigParamsWithContext

func NewDeleteOidcTestConfigParamsWithContext(ctx context.Context) *DeleteOidcTestConfigParams

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

func NewDeleteOidcTestConfigParamsWithHTTPClient

func NewDeleteOidcTestConfigParamsWithHTTPClient(client *http.Client) *DeleteOidcTestConfigParams

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

func NewDeleteOidcTestConfigParamsWithTimeout

func NewDeleteOidcTestConfigParamsWithTimeout(timeout time.Duration) *DeleteOidcTestConfigParams

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

func (*DeleteOidcTestConfigParams) SetContext

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

SetContext adds the context to the delete oidc test config params

func (*DeleteOidcTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete oidc test config params

func (*DeleteOidcTestConfigParams) SetTestSlug

func (o *DeleteOidcTestConfigParams) SetTestSlug(testSlug string)

SetTestSlug adds the testSlug to the delete oidc test config params

func (*DeleteOidcTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the delete oidc test config params

func (*DeleteOidcTestConfigParams) WithContext

WithContext adds the context to the delete oidc test config params

func (*DeleteOidcTestConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete oidc test config params

func (*DeleteOidcTestConfigParams) WithTestSlug

WithTestSlug adds the testSlug to the delete oidc test config params

func (*DeleteOidcTestConfigParams) WithTimeout

WithTimeout adds the timeout to the delete oidc test config params

func (*DeleteOidcTestConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteOidcTestConfigReader

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

DeleteOidcTestConfigReader is a Reader for the DeleteOidcTestConfig structure.

func (*DeleteOidcTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteSamlTestConfigBadRequest

type DeleteSamlTestConfigBadRequest struct {
	Payload *models.Error
}

DeleteSamlTestConfigBadRequest handles this case with default header values.

Bad Request

func NewDeleteSamlTestConfigBadRequest

func NewDeleteSamlTestConfigBadRequest() *DeleteSamlTestConfigBadRequest

NewDeleteSamlTestConfigBadRequest creates a DeleteSamlTestConfigBadRequest with default headers values

func (*DeleteSamlTestConfigBadRequest) Error

type DeleteSamlTestConfigNoContent

type DeleteSamlTestConfigNoContent struct {
	Payload string
}

DeleteSamlTestConfigNoContent handles this case with default header values.

Test config succssfully deleted.

func NewDeleteSamlTestConfigNoContent

func NewDeleteSamlTestConfigNoContent() *DeleteSamlTestConfigNoContent

NewDeleteSamlTestConfigNoContent creates a DeleteSamlTestConfigNoContent with default headers values

func (*DeleteSamlTestConfigNoContent) Error

type DeleteSamlTestConfigNotFound

type DeleteSamlTestConfigNotFound struct {
	Payload *models.Error
}

DeleteSamlTestConfigNotFound handles this case with default header values.

Not Found

func NewDeleteSamlTestConfigNotFound

func NewDeleteSamlTestConfigNotFound() *DeleteSamlTestConfigNotFound

NewDeleteSamlTestConfigNotFound creates a DeleteSamlTestConfigNotFound with default headers values

func (*DeleteSamlTestConfigNotFound) Error

type DeleteSamlTestConfigParams

type DeleteSamlTestConfigParams struct {

	/*TestSlug
	  Slug of test config

	*/
	TestSlug string

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

DeleteSamlTestConfigParams contains all the parameters to send to the API endpoint for the delete saml test config operation typically these are written to a http.Request

func NewDeleteSamlTestConfigParams

func NewDeleteSamlTestConfigParams() *DeleteSamlTestConfigParams

NewDeleteSamlTestConfigParams creates a new DeleteSamlTestConfigParams object with the default values initialized.

func NewDeleteSamlTestConfigParamsWithContext

func NewDeleteSamlTestConfigParamsWithContext(ctx context.Context) *DeleteSamlTestConfigParams

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

func NewDeleteSamlTestConfigParamsWithHTTPClient

func NewDeleteSamlTestConfigParamsWithHTTPClient(client *http.Client) *DeleteSamlTestConfigParams

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

func NewDeleteSamlTestConfigParamsWithTimeout

func NewDeleteSamlTestConfigParamsWithTimeout(timeout time.Duration) *DeleteSamlTestConfigParams

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

func (*DeleteSamlTestConfigParams) SetContext

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

SetContext adds the context to the delete saml test config params

func (*DeleteSamlTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete saml test config params

func (*DeleteSamlTestConfigParams) SetTestSlug

func (o *DeleteSamlTestConfigParams) SetTestSlug(testSlug string)

SetTestSlug adds the testSlug to the delete saml test config params

func (*DeleteSamlTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the delete saml test config params

func (*DeleteSamlTestConfigParams) WithContext

WithContext adds the context to the delete saml test config params

func (*DeleteSamlTestConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete saml test config params

func (*DeleteSamlTestConfigParams) WithTestSlug

WithTestSlug adds the testSlug to the delete saml test config params

func (*DeleteSamlTestConfigParams) WithTimeout

WithTimeout adds the timeout to the delete saml test config params

func (*DeleteSamlTestConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteSamlTestConfigReader

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

DeleteSamlTestConfigReader is a Reader for the DeleteSamlTestConfig structure.

func (*DeleteSamlTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FetchAndParseSamlIdpMetadataBadRequest

type FetchAndParseSamlIdpMetadataBadRequest struct {
	Payload *models.Error
}

FetchAndParseSamlIdpMetadataBadRequest handles this case with default header values.

Bad Request

func NewFetchAndParseSamlIdpMetadataBadRequest

func NewFetchAndParseSamlIdpMetadataBadRequest() *FetchAndParseSamlIdpMetadataBadRequest

NewFetchAndParseSamlIdpMetadataBadRequest creates a FetchAndParseSamlIdpMetadataBadRequest with default headers values

func (*FetchAndParseSamlIdpMetadataBadRequest) Error

type FetchAndParseSamlIdpMetadataNotFound

type FetchAndParseSamlIdpMetadataNotFound struct {
	Payload *models.Error
}

FetchAndParseSamlIdpMetadataNotFound handles this case with default header values.

Not Found

func NewFetchAndParseSamlIdpMetadataNotFound

func NewFetchAndParseSamlIdpMetadataNotFound() *FetchAndParseSamlIdpMetadataNotFound

NewFetchAndParseSamlIdpMetadataNotFound creates a FetchAndParseSamlIdpMetadataNotFound with default headers values

func (*FetchAndParseSamlIdpMetadataNotFound) Error

type FetchAndParseSamlIdpMetadataOK

type FetchAndParseSamlIdpMetadataOK struct {
	Payload *models.SamlMetadataParseResult
}

FetchAndParseSamlIdpMetadataOK handles this case with default header values.

Parse result

func NewFetchAndParseSamlIdpMetadataOK

func NewFetchAndParseSamlIdpMetadataOK() *FetchAndParseSamlIdpMetadataOK

NewFetchAndParseSamlIdpMetadataOK creates a FetchAndParseSamlIdpMetadataOK with default headers values

func (*FetchAndParseSamlIdpMetadataOK) Error

type FetchAndParseSamlIdpMetadataParams

type FetchAndParseSamlIdpMetadataParams struct {

	/*Body
	  SAML IdP metadata public url

	*/
	Body string

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

FetchAndParseSamlIdpMetadataParams contains all the parameters to send to the API endpoint for the fetch and parse saml idp metadata operation typically these are written to a http.Request

func NewFetchAndParseSamlIdpMetadataParams

func NewFetchAndParseSamlIdpMetadataParams() *FetchAndParseSamlIdpMetadataParams

NewFetchAndParseSamlIdpMetadataParams creates a new FetchAndParseSamlIdpMetadataParams object with the default values initialized.

func NewFetchAndParseSamlIdpMetadataParamsWithContext

func NewFetchAndParseSamlIdpMetadataParamsWithContext(ctx context.Context) *FetchAndParseSamlIdpMetadataParams

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

func NewFetchAndParseSamlIdpMetadataParamsWithHTTPClient

func NewFetchAndParseSamlIdpMetadataParamsWithHTTPClient(client *http.Client) *FetchAndParseSamlIdpMetadataParams

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

func NewFetchAndParseSamlIdpMetadataParamsWithTimeout

func NewFetchAndParseSamlIdpMetadataParamsWithTimeout(timeout time.Duration) *FetchAndParseSamlIdpMetadataParams

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

func (*FetchAndParseSamlIdpMetadataParams) SetBody

func (o *FetchAndParseSamlIdpMetadataParams) SetBody(body string)

SetBody adds the body to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) SetContext

SetContext adds the context to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) SetTimeout

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

SetTimeout adds the timeout to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) WithBody

WithBody adds the body to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) WithContext

WithContext adds the context to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) WithTimeout

WithTimeout adds the timeout to the fetch and parse saml idp metadata params

func (*FetchAndParseSamlIdpMetadataParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FetchAndParseSamlIdpMetadataReader

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

FetchAndParseSamlIdpMetadataReader is a Reader for the FetchAndParseSamlIdpMetadata structure.

func (*FetchAndParseSamlIdpMetadataReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LdapConfigNotFound

type LdapConfigNotFound struct {
	Payload *models.Error
}

LdapConfigNotFound handles this case with default header values.

Not Found

func NewLdapConfigNotFound

func NewLdapConfigNotFound() *LdapConfigNotFound

NewLdapConfigNotFound creates a LdapConfigNotFound with default headers values

func (*LdapConfigNotFound) Error

func (o *LdapConfigNotFound) Error() string

type LdapConfigOK

type LdapConfigOK struct {
	Payload *models.LDAPConfig
}

LdapConfigOK handles this case with default header values.

LDAP Configuration.

func NewLdapConfigOK

func NewLdapConfigOK() *LdapConfigOK

NewLdapConfigOK creates a LdapConfigOK with default headers values

func (*LdapConfigOK) Error

func (o *LdapConfigOK) Error() string

type LdapConfigParams

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

LdapConfigParams contains all the parameters to send to the API endpoint for the ldap config operation typically these are written to a http.Request

func NewLdapConfigParams

func NewLdapConfigParams() *LdapConfigParams

NewLdapConfigParams creates a new LdapConfigParams object with the default values initialized.

func NewLdapConfigParamsWithContext

func NewLdapConfigParamsWithContext(ctx context.Context) *LdapConfigParams

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

func NewLdapConfigParamsWithHTTPClient

func NewLdapConfigParamsWithHTTPClient(client *http.Client) *LdapConfigParams

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

func NewLdapConfigParamsWithTimeout

func NewLdapConfigParamsWithTimeout(timeout time.Duration) *LdapConfigParams

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

func (*LdapConfigParams) SetContext

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

SetContext adds the context to the ldap config params

func (*LdapConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the ldap config params

func (*LdapConfigParams) SetTimeout

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

SetTimeout adds the timeout to the ldap config params

func (*LdapConfigParams) WithContext

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

WithContext adds the context to the ldap config params

func (*LdapConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the ldap config params

func (*LdapConfigParams) WithTimeout

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

WithTimeout adds the timeout to the ldap config params

func (*LdapConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type LdapConfigReader

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

LdapConfigReader is a Reader for the LdapConfig structure.

func (*LdapConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OidcConfigNotFound

type OidcConfigNotFound struct {
	Payload *models.Error
}

OidcConfigNotFound handles this case with default header values.

Not Found

func NewOidcConfigNotFound

func NewOidcConfigNotFound() *OidcConfigNotFound

NewOidcConfigNotFound creates a OidcConfigNotFound with default headers values

func (*OidcConfigNotFound) Error

func (o *OidcConfigNotFound) Error() string

type OidcConfigOK

type OidcConfigOK struct {
	Payload *models.OIDCConfig
}

OidcConfigOK handles this case with default header values.

OIDC Configuration.

func NewOidcConfigOK

func NewOidcConfigOK() *OidcConfigOK

NewOidcConfigOK creates a OidcConfigOK with default headers values

func (*OidcConfigOK) Error

func (o *OidcConfigOK) Error() string

type OidcConfigParams

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

OidcConfigParams contains all the parameters to send to the API endpoint for the oidc config operation typically these are written to a http.Request

func NewOidcConfigParams

func NewOidcConfigParams() *OidcConfigParams

NewOidcConfigParams creates a new OidcConfigParams object with the default values initialized.

func NewOidcConfigParamsWithContext

func NewOidcConfigParamsWithContext(ctx context.Context) *OidcConfigParams

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

func NewOidcConfigParamsWithHTTPClient

func NewOidcConfigParamsWithHTTPClient(client *http.Client) *OidcConfigParams

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

func NewOidcConfigParamsWithTimeout

func NewOidcConfigParamsWithTimeout(timeout time.Duration) *OidcConfigParams

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

func (*OidcConfigParams) SetContext

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

SetContext adds the context to the oidc config params

func (*OidcConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the oidc config params

func (*OidcConfigParams) SetTimeout

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

SetTimeout adds the timeout to the oidc config params

func (*OidcConfigParams) WithContext

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

WithContext adds the context to the oidc config params

func (*OidcConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the oidc config params

func (*OidcConfigParams) WithTimeout

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

WithTimeout adds the timeout to the oidc config params

func (*OidcConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type OidcConfigReader

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

OidcConfigReader is a Reader for the OidcConfig structure.

func (*OidcConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OidcTestConfigNotFound

type OidcTestConfigNotFound struct {
	Payload *models.Error
}

OidcTestConfigNotFound handles this case with default header values.

Not Found

func NewOidcTestConfigNotFound

func NewOidcTestConfigNotFound() *OidcTestConfigNotFound

NewOidcTestConfigNotFound creates a OidcTestConfigNotFound with default headers values

func (*OidcTestConfigNotFound) Error

func (o *OidcTestConfigNotFound) Error() string

type OidcTestConfigOK

type OidcTestConfigOK struct {
	Payload *models.OIDCConfig
}

OidcTestConfigOK handles this case with default header values.

OIDC test config.

func NewOidcTestConfigOK

func NewOidcTestConfigOK() *OidcTestConfigOK

NewOidcTestConfigOK creates a OidcTestConfigOK with default headers values

func (*OidcTestConfigOK) Error

func (o *OidcTestConfigOK) Error() string

type OidcTestConfigParams

type OidcTestConfigParams struct {

	/*TestSlug
	  Slug of test config

	*/
	TestSlug string

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

OidcTestConfigParams contains all the parameters to send to the API endpoint for the oidc test config operation typically these are written to a http.Request

func NewOidcTestConfigParams

func NewOidcTestConfigParams() *OidcTestConfigParams

NewOidcTestConfigParams creates a new OidcTestConfigParams object with the default values initialized.

func NewOidcTestConfigParamsWithContext

func NewOidcTestConfigParamsWithContext(ctx context.Context) *OidcTestConfigParams

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

func NewOidcTestConfigParamsWithHTTPClient

func NewOidcTestConfigParamsWithHTTPClient(client *http.Client) *OidcTestConfigParams

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

func NewOidcTestConfigParamsWithTimeout

func NewOidcTestConfigParamsWithTimeout(timeout time.Duration) *OidcTestConfigParams

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

func (*OidcTestConfigParams) SetContext

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

SetContext adds the context to the oidc test config params

func (*OidcTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the oidc test config params

func (*OidcTestConfigParams) SetTestSlug

func (o *OidcTestConfigParams) SetTestSlug(testSlug string)

SetTestSlug adds the testSlug to the oidc test config params

func (*OidcTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the oidc test config params

func (*OidcTestConfigParams) WithContext

WithContext adds the context to the oidc test config params

func (*OidcTestConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the oidc test config params

func (*OidcTestConfigParams) WithTestSlug

func (o *OidcTestConfigParams) WithTestSlug(testSlug string) *OidcTestConfigParams

WithTestSlug adds the testSlug to the oidc test config params

func (*OidcTestConfigParams) WithTimeout

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

WithTimeout adds the timeout to the oidc test config params

func (*OidcTestConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type OidcTestConfigReader

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

OidcTestConfigReader is a Reader for the OidcTestConfig structure.

func (*OidcTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ParseSamlIdpMetadataBadRequest

type ParseSamlIdpMetadataBadRequest struct {
	Payload *models.Error
}

ParseSamlIdpMetadataBadRequest handles this case with default header values.

Bad Request

func NewParseSamlIdpMetadataBadRequest

func NewParseSamlIdpMetadataBadRequest() *ParseSamlIdpMetadataBadRequest

NewParseSamlIdpMetadataBadRequest creates a ParseSamlIdpMetadataBadRequest with default headers values

func (*ParseSamlIdpMetadataBadRequest) Error

type ParseSamlIdpMetadataNotFound

type ParseSamlIdpMetadataNotFound struct {
	Payload *models.Error
}

ParseSamlIdpMetadataNotFound handles this case with default header values.

Not Found

func NewParseSamlIdpMetadataNotFound

func NewParseSamlIdpMetadataNotFound() *ParseSamlIdpMetadataNotFound

NewParseSamlIdpMetadataNotFound creates a ParseSamlIdpMetadataNotFound with default headers values

func (*ParseSamlIdpMetadataNotFound) Error

type ParseSamlIdpMetadataOK

type ParseSamlIdpMetadataOK struct {
	Payload *models.SamlMetadataParseResult
}

ParseSamlIdpMetadataOK handles this case with default header values.

Parse result

func NewParseSamlIdpMetadataOK

func NewParseSamlIdpMetadataOK() *ParseSamlIdpMetadataOK

NewParseSamlIdpMetadataOK creates a ParseSamlIdpMetadataOK with default headers values

func (*ParseSamlIdpMetadataOK) Error

func (o *ParseSamlIdpMetadataOK) Error() string

type ParseSamlIdpMetadataParams

type ParseSamlIdpMetadataParams struct {

	/*Body
	  SAML IdP metadata xml

	*/
	Body string

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

ParseSamlIdpMetadataParams contains all the parameters to send to the API endpoint for the parse saml idp metadata operation typically these are written to a http.Request

func NewParseSamlIdpMetadataParams

func NewParseSamlIdpMetadataParams() *ParseSamlIdpMetadataParams

NewParseSamlIdpMetadataParams creates a new ParseSamlIdpMetadataParams object with the default values initialized.

func NewParseSamlIdpMetadataParamsWithContext

func NewParseSamlIdpMetadataParamsWithContext(ctx context.Context) *ParseSamlIdpMetadataParams

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

func NewParseSamlIdpMetadataParamsWithHTTPClient

func NewParseSamlIdpMetadataParamsWithHTTPClient(client *http.Client) *ParseSamlIdpMetadataParams

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

func NewParseSamlIdpMetadataParamsWithTimeout

func NewParseSamlIdpMetadataParamsWithTimeout(timeout time.Duration) *ParseSamlIdpMetadataParams

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

func (*ParseSamlIdpMetadataParams) SetBody

func (o *ParseSamlIdpMetadataParams) SetBody(body string)

SetBody adds the body to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) SetContext

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

SetContext adds the context to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) SetTimeout

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

SetTimeout adds the timeout to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) WithBody

WithBody adds the body to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) WithContext

WithContext adds the context to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) WithTimeout

WithTimeout adds the timeout to the parse saml idp metadata params

func (*ParseSamlIdpMetadataParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ParseSamlIdpMetadataReader

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

ParseSamlIdpMetadataReader is a Reader for the ParseSamlIdpMetadata structure.

func (*ParseSamlIdpMetadataReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SamlConfigNotFound

type SamlConfigNotFound struct {
	Payload *models.Error
}

SamlConfigNotFound handles this case with default header values.

Not Found

func NewSamlConfigNotFound

func NewSamlConfigNotFound() *SamlConfigNotFound

NewSamlConfigNotFound creates a SamlConfigNotFound with default headers values

func (*SamlConfigNotFound) Error

func (o *SamlConfigNotFound) Error() string

type SamlConfigOK

type SamlConfigOK struct {
	Payload *models.SamlConfig
}

SamlConfigOK handles this case with default header values.

SAML Configuration.

func NewSamlConfigOK

func NewSamlConfigOK() *SamlConfigOK

NewSamlConfigOK creates a SamlConfigOK with default headers values

func (*SamlConfigOK) Error

func (o *SamlConfigOK) Error() string

type SamlConfigParams

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

SamlConfigParams contains all the parameters to send to the API endpoint for the saml config operation typically these are written to a http.Request

func NewSamlConfigParams

func NewSamlConfigParams() *SamlConfigParams

NewSamlConfigParams creates a new SamlConfigParams object with the default values initialized.

func NewSamlConfigParamsWithContext

func NewSamlConfigParamsWithContext(ctx context.Context) *SamlConfigParams

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

func NewSamlConfigParamsWithHTTPClient

func NewSamlConfigParamsWithHTTPClient(client *http.Client) *SamlConfigParams

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

func NewSamlConfigParamsWithTimeout

func NewSamlConfigParamsWithTimeout(timeout time.Duration) *SamlConfigParams

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

func (*SamlConfigParams) SetContext

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

SetContext adds the context to the saml config params

func (*SamlConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the saml config params

func (*SamlConfigParams) SetTimeout

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

SetTimeout adds the timeout to the saml config params

func (*SamlConfigParams) WithContext

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

WithContext adds the context to the saml config params

func (*SamlConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the saml config params

func (*SamlConfigParams) WithTimeout

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

WithTimeout adds the timeout to the saml config params

func (*SamlConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SamlConfigReader

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

SamlConfigReader is a Reader for the SamlConfig structure.

func (*SamlConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SamlTestConfigNotFound

type SamlTestConfigNotFound struct {
	Payload *models.Error
}

SamlTestConfigNotFound handles this case with default header values.

Not Found

func NewSamlTestConfigNotFound

func NewSamlTestConfigNotFound() *SamlTestConfigNotFound

NewSamlTestConfigNotFound creates a SamlTestConfigNotFound with default headers values

func (*SamlTestConfigNotFound) Error

func (o *SamlTestConfigNotFound) Error() string

type SamlTestConfigOK

type SamlTestConfigOK struct {
	Payload *models.SamlConfig
}

SamlTestConfigOK handles this case with default header values.

SAML test config.

func NewSamlTestConfigOK

func NewSamlTestConfigOK() *SamlTestConfigOK

NewSamlTestConfigOK creates a SamlTestConfigOK with default headers values

func (*SamlTestConfigOK) Error

func (o *SamlTestConfigOK) Error() string

type SamlTestConfigParams

type SamlTestConfigParams struct {

	/*TestSlug
	  Slug of test config

	*/
	TestSlug string

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

SamlTestConfigParams contains all the parameters to send to the API endpoint for the saml test config operation typically these are written to a http.Request

func NewSamlTestConfigParams

func NewSamlTestConfigParams() *SamlTestConfigParams

NewSamlTestConfigParams creates a new SamlTestConfigParams object with the default values initialized.

func NewSamlTestConfigParamsWithContext

func NewSamlTestConfigParamsWithContext(ctx context.Context) *SamlTestConfigParams

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

func NewSamlTestConfigParamsWithHTTPClient

func NewSamlTestConfigParamsWithHTTPClient(client *http.Client) *SamlTestConfigParams

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

func NewSamlTestConfigParamsWithTimeout

func NewSamlTestConfigParamsWithTimeout(timeout time.Duration) *SamlTestConfigParams

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

func (*SamlTestConfigParams) SetContext

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

SetContext adds the context to the saml test config params

func (*SamlTestConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the saml test config params

func (*SamlTestConfigParams) SetTestSlug

func (o *SamlTestConfigParams) SetTestSlug(testSlug string)

SetTestSlug adds the testSlug to the saml test config params

func (*SamlTestConfigParams) SetTimeout

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

SetTimeout adds the timeout to the saml test config params

func (*SamlTestConfigParams) WithContext

WithContext adds the context to the saml test config params

func (*SamlTestConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the saml test config params

func (*SamlTestConfigParams) WithTestSlug

func (o *SamlTestConfigParams) WithTestSlug(testSlug string) *SamlTestConfigParams

WithTestSlug adds the testSlug to the saml test config params

func (*SamlTestConfigParams) WithTimeout

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

WithTimeout adds the timeout to the saml test config params

func (*SamlTestConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SamlTestConfigReader

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

SamlTestConfigReader is a Reader for the SamlTestConfig structure.

func (*SamlTestConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestLdapConfigAuthBadRequest

type TestLdapConfigAuthBadRequest struct {
	Payload *models.Error
}

TestLdapConfigAuthBadRequest handles this case with default header values.

Bad Request

func NewTestLdapConfigAuthBadRequest

func NewTestLdapConfigAuthBadRequest() *TestLdapConfigAuthBadRequest

NewTestLdapConfigAuthBadRequest creates a TestLdapConfigAuthBadRequest with default headers values

func (*TestLdapConfigAuthBadRequest) Error

type TestLdapConfigAuthNotFound

type TestLdapConfigAuthNotFound struct {
	Payload *models.Error
}

TestLdapConfigAuthNotFound handles this case with default header values.

Not Found

func NewTestLdapConfigAuthNotFound

func NewTestLdapConfigAuthNotFound() *TestLdapConfigAuthNotFound

NewTestLdapConfigAuthNotFound creates a TestLdapConfigAuthNotFound with default headers values

func (*TestLdapConfigAuthNotFound) Error

type TestLdapConfigAuthOK

type TestLdapConfigAuthOK struct {
	Payload *models.LDAPConfigTestResult
}

TestLdapConfigAuthOK handles this case with default header values.

Result info.

func NewTestLdapConfigAuthOK

func NewTestLdapConfigAuthOK() *TestLdapConfigAuthOK

NewTestLdapConfigAuthOK creates a TestLdapConfigAuthOK with default headers values

func (*TestLdapConfigAuthOK) Error

func (o *TestLdapConfigAuthOK) Error() string

type TestLdapConfigAuthParams

type TestLdapConfigAuthParams struct {

	/*Body
	  LDAP Config

	*/
	Body *models.LDAPConfig

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

TestLdapConfigAuthParams contains all the parameters to send to the API endpoint for the test ldap config auth operation typically these are written to a http.Request

func NewTestLdapConfigAuthParams

func NewTestLdapConfigAuthParams() *TestLdapConfigAuthParams

NewTestLdapConfigAuthParams creates a new TestLdapConfigAuthParams object with the default values initialized.

func NewTestLdapConfigAuthParamsWithContext

func NewTestLdapConfigAuthParamsWithContext(ctx context.Context) *TestLdapConfigAuthParams

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

func NewTestLdapConfigAuthParamsWithHTTPClient

func NewTestLdapConfigAuthParamsWithHTTPClient(client *http.Client) *TestLdapConfigAuthParams

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

func NewTestLdapConfigAuthParamsWithTimeout

func NewTestLdapConfigAuthParamsWithTimeout(timeout time.Duration) *TestLdapConfigAuthParams

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

func (*TestLdapConfigAuthParams) SetBody

func (o *TestLdapConfigAuthParams) SetBody(body *models.LDAPConfig)

SetBody adds the body to the test ldap config auth params

func (*TestLdapConfigAuthParams) SetContext

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

SetContext adds the context to the test ldap config auth params

func (*TestLdapConfigAuthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the test ldap config auth params

func (*TestLdapConfigAuthParams) SetTimeout

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

SetTimeout adds the timeout to the test ldap config auth params

func (*TestLdapConfigAuthParams) WithBody

WithBody adds the body to the test ldap config auth params

func (*TestLdapConfigAuthParams) WithContext

WithContext adds the context to the test ldap config auth params

func (*TestLdapConfigAuthParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the test ldap config auth params

func (*TestLdapConfigAuthParams) WithTimeout

WithTimeout adds the timeout to the test ldap config auth params

func (*TestLdapConfigAuthParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TestLdapConfigAuthReader

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

TestLdapConfigAuthReader is a Reader for the TestLdapConfigAuth structure.

func (*TestLdapConfigAuthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestLdapConfigAuthUnprocessableEntity

type TestLdapConfigAuthUnprocessableEntity struct {
	Payload *models.ValidationError
}

TestLdapConfigAuthUnprocessableEntity handles this case with default header values.

Validation Error

func NewTestLdapConfigAuthUnprocessableEntity

func NewTestLdapConfigAuthUnprocessableEntity() *TestLdapConfigAuthUnprocessableEntity

NewTestLdapConfigAuthUnprocessableEntity creates a TestLdapConfigAuthUnprocessableEntity with default headers values

func (*TestLdapConfigAuthUnprocessableEntity) Error

type TestLdapConfigConnectionBadRequest

type TestLdapConfigConnectionBadRequest struct {
	Payload *models.Error
}

TestLdapConfigConnectionBadRequest handles this case with default header values.

Bad Request

func NewTestLdapConfigConnectionBadRequest

func NewTestLdapConfigConnectionBadRequest() *TestLdapConfigConnectionBadRequest

NewTestLdapConfigConnectionBadRequest creates a TestLdapConfigConnectionBadRequest with default headers values

func (*TestLdapConfigConnectionBadRequest) Error

type TestLdapConfigConnectionNotFound

type TestLdapConfigConnectionNotFound struct {
	Payload *models.Error
}

TestLdapConfigConnectionNotFound handles this case with default header values.

Not Found

func NewTestLdapConfigConnectionNotFound

func NewTestLdapConfigConnectionNotFound() *TestLdapConfigConnectionNotFound

NewTestLdapConfigConnectionNotFound creates a TestLdapConfigConnectionNotFound with default headers values

func (*TestLdapConfigConnectionNotFound) Error

type TestLdapConfigConnectionOK

type TestLdapConfigConnectionOK struct {
	Payload *models.LDAPConfigTestResult
}

TestLdapConfigConnectionOK handles this case with default header values.

Result info.

func NewTestLdapConfigConnectionOK

func NewTestLdapConfigConnectionOK() *TestLdapConfigConnectionOK

NewTestLdapConfigConnectionOK creates a TestLdapConfigConnectionOK with default headers values

func (*TestLdapConfigConnectionOK) Error

type TestLdapConfigConnectionParams

type TestLdapConfigConnectionParams struct {

	/*Body
	  LDAP Config

	*/
	Body *models.LDAPConfig

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

TestLdapConfigConnectionParams contains all the parameters to send to the API endpoint for the test ldap config connection operation typically these are written to a http.Request

func NewTestLdapConfigConnectionParams

func NewTestLdapConfigConnectionParams() *TestLdapConfigConnectionParams

NewTestLdapConfigConnectionParams creates a new TestLdapConfigConnectionParams object with the default values initialized.

func NewTestLdapConfigConnectionParamsWithContext

func NewTestLdapConfigConnectionParamsWithContext(ctx context.Context) *TestLdapConfigConnectionParams

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

func NewTestLdapConfigConnectionParamsWithHTTPClient

func NewTestLdapConfigConnectionParamsWithHTTPClient(client *http.Client) *TestLdapConfigConnectionParams

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

func NewTestLdapConfigConnectionParamsWithTimeout

func NewTestLdapConfigConnectionParamsWithTimeout(timeout time.Duration) *TestLdapConfigConnectionParams

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

func (*TestLdapConfigConnectionParams) SetBody

SetBody adds the body to the test ldap config connection params

func (*TestLdapConfigConnectionParams) SetContext

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

SetContext adds the context to the test ldap config connection params

func (*TestLdapConfigConnectionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the test ldap config connection params

func (*TestLdapConfigConnectionParams) SetTimeout

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

SetTimeout adds the timeout to the test ldap config connection params

func (*TestLdapConfigConnectionParams) WithBody

WithBody adds the body to the test ldap config connection params

func (*TestLdapConfigConnectionParams) WithContext

WithContext adds the context to the test ldap config connection params

func (*TestLdapConfigConnectionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the test ldap config connection params

func (*TestLdapConfigConnectionParams) WithTimeout

WithTimeout adds the timeout to the test ldap config connection params

func (*TestLdapConfigConnectionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TestLdapConfigConnectionReader

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

TestLdapConfigConnectionReader is a Reader for the TestLdapConfigConnection structure.

func (*TestLdapConfigConnectionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestLdapConfigConnectionUnprocessableEntity

type TestLdapConfigConnectionUnprocessableEntity struct {
	Payload *models.ValidationError
}

TestLdapConfigConnectionUnprocessableEntity handles this case with default header values.

Validation Error

func NewTestLdapConfigConnectionUnprocessableEntity

func NewTestLdapConfigConnectionUnprocessableEntity() *TestLdapConfigConnectionUnprocessableEntity

NewTestLdapConfigConnectionUnprocessableEntity creates a TestLdapConfigConnectionUnprocessableEntity with default headers values

func (*TestLdapConfigConnectionUnprocessableEntity) Error

type TestLdapConfigUserAuthBadRequest

type TestLdapConfigUserAuthBadRequest struct {
	Payload *models.Error
}

TestLdapConfigUserAuthBadRequest handles this case with default header values.

Bad Request

func NewTestLdapConfigUserAuthBadRequest

func NewTestLdapConfigUserAuthBadRequest() *TestLdapConfigUserAuthBadRequest

NewTestLdapConfigUserAuthBadRequest creates a TestLdapConfigUserAuthBadRequest with default headers values

func (*TestLdapConfigUserAuthBadRequest) Error

type TestLdapConfigUserAuthNotFound

type TestLdapConfigUserAuthNotFound struct {
	Payload *models.Error
}

TestLdapConfigUserAuthNotFound handles this case with default header values.

Not Found

func NewTestLdapConfigUserAuthNotFound

func NewTestLdapConfigUserAuthNotFound() *TestLdapConfigUserAuthNotFound

NewTestLdapConfigUserAuthNotFound creates a TestLdapConfigUserAuthNotFound with default headers values

func (*TestLdapConfigUserAuthNotFound) Error

type TestLdapConfigUserAuthOK

type TestLdapConfigUserAuthOK struct {
	Payload *models.LDAPConfigTestResult
}

TestLdapConfigUserAuthOK handles this case with default header values.

Result info.

func NewTestLdapConfigUserAuthOK

func NewTestLdapConfigUserAuthOK() *TestLdapConfigUserAuthOK

NewTestLdapConfigUserAuthOK creates a TestLdapConfigUserAuthOK with default headers values

func (*TestLdapConfigUserAuthOK) Error

func (o *TestLdapConfigUserAuthOK) Error() string

type TestLdapConfigUserAuthParams

type TestLdapConfigUserAuthParams struct {

	/*Body
	  LDAP Config

	*/
	Body *models.LDAPConfig

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

TestLdapConfigUserAuthParams contains all the parameters to send to the API endpoint for the test ldap config user auth operation typically these are written to a http.Request

func NewTestLdapConfigUserAuthParams

func NewTestLdapConfigUserAuthParams() *TestLdapConfigUserAuthParams

NewTestLdapConfigUserAuthParams creates a new TestLdapConfigUserAuthParams object with the default values initialized.

func NewTestLdapConfigUserAuthParamsWithContext

func NewTestLdapConfigUserAuthParamsWithContext(ctx context.Context) *TestLdapConfigUserAuthParams

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

func NewTestLdapConfigUserAuthParamsWithHTTPClient

func NewTestLdapConfigUserAuthParamsWithHTTPClient(client *http.Client) *TestLdapConfigUserAuthParams

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

func NewTestLdapConfigUserAuthParamsWithTimeout

func NewTestLdapConfigUserAuthParamsWithTimeout(timeout time.Duration) *TestLdapConfigUserAuthParams

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

func (*TestLdapConfigUserAuthParams) SetBody

SetBody adds the body to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) SetContext

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

SetContext adds the context to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) SetTimeout

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

SetTimeout adds the timeout to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) WithBody

WithBody adds the body to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) WithContext

WithContext adds the context to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) WithTimeout

WithTimeout adds the timeout to the test ldap config user auth params

func (*TestLdapConfigUserAuthParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TestLdapConfigUserAuthReader

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

TestLdapConfigUserAuthReader is a Reader for the TestLdapConfigUserAuth structure.

func (*TestLdapConfigUserAuthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestLdapConfigUserAuthUnprocessableEntity

type TestLdapConfigUserAuthUnprocessableEntity struct {
	Payload *models.ValidationError
}

TestLdapConfigUserAuthUnprocessableEntity handles this case with default header values.

Validation Error

func NewTestLdapConfigUserAuthUnprocessableEntity

func NewTestLdapConfigUserAuthUnprocessableEntity() *TestLdapConfigUserAuthUnprocessableEntity

NewTestLdapConfigUserAuthUnprocessableEntity creates a TestLdapConfigUserAuthUnprocessableEntity with default headers values

func (*TestLdapConfigUserAuthUnprocessableEntity) Error

type TestLdapConfigUserInfoBadRequest

type TestLdapConfigUserInfoBadRequest struct {
	Payload *models.Error
}

TestLdapConfigUserInfoBadRequest handles this case with default header values.

Bad Request

func NewTestLdapConfigUserInfoBadRequest

func NewTestLdapConfigUserInfoBadRequest() *TestLdapConfigUserInfoBadRequest

NewTestLdapConfigUserInfoBadRequest creates a TestLdapConfigUserInfoBadRequest with default headers values

func (*TestLdapConfigUserInfoBadRequest) Error

type TestLdapConfigUserInfoNotFound

type TestLdapConfigUserInfoNotFound struct {
	Payload *models.Error
}

TestLdapConfigUserInfoNotFound handles this case with default header values.

Not Found

func NewTestLdapConfigUserInfoNotFound

func NewTestLdapConfigUserInfoNotFound() *TestLdapConfigUserInfoNotFound

NewTestLdapConfigUserInfoNotFound creates a TestLdapConfigUserInfoNotFound with default headers values

func (*TestLdapConfigUserInfoNotFound) Error

type TestLdapConfigUserInfoOK

type TestLdapConfigUserInfoOK struct {
	Payload *models.LDAPConfigTestResult
}

TestLdapConfigUserInfoOK handles this case with default header values.

Result info.

func NewTestLdapConfigUserInfoOK

func NewTestLdapConfigUserInfoOK() *TestLdapConfigUserInfoOK

NewTestLdapConfigUserInfoOK creates a TestLdapConfigUserInfoOK with default headers values

func (*TestLdapConfigUserInfoOK) Error

func (o *TestLdapConfigUserInfoOK) Error() string

type TestLdapConfigUserInfoParams

type TestLdapConfigUserInfoParams struct {

	/*Body
	  LDAP Config

	*/
	Body *models.LDAPConfig

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

TestLdapConfigUserInfoParams contains all the parameters to send to the API endpoint for the test ldap config user info operation typically these are written to a http.Request

func NewTestLdapConfigUserInfoParams

func NewTestLdapConfigUserInfoParams() *TestLdapConfigUserInfoParams

NewTestLdapConfigUserInfoParams creates a new TestLdapConfigUserInfoParams object with the default values initialized.

func NewTestLdapConfigUserInfoParamsWithContext

func NewTestLdapConfigUserInfoParamsWithContext(ctx context.Context) *TestLdapConfigUserInfoParams

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

func NewTestLdapConfigUserInfoParamsWithHTTPClient

func NewTestLdapConfigUserInfoParamsWithHTTPClient(client *http.Client) *TestLdapConfigUserInfoParams

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

func NewTestLdapConfigUserInfoParamsWithTimeout

func NewTestLdapConfigUserInfoParamsWithTimeout(timeout time.Duration) *TestLdapConfigUserInfoParams

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

func (*TestLdapConfigUserInfoParams) SetBody

SetBody adds the body to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) SetContext

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

SetContext adds the context to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) SetTimeout

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

SetTimeout adds the timeout to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) WithBody

WithBody adds the body to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) WithContext

WithContext adds the context to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) WithTimeout

WithTimeout adds the timeout to the test ldap config user info params

func (*TestLdapConfigUserInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TestLdapConfigUserInfoReader

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

TestLdapConfigUserInfoReader is a Reader for the TestLdapConfigUserInfo structure.

func (*TestLdapConfigUserInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestLdapConfigUserInfoUnprocessableEntity

type TestLdapConfigUserInfoUnprocessableEntity struct {
	Payload *models.ValidationError
}

TestLdapConfigUserInfoUnprocessableEntity handles this case with default header values.

Validation Error

func NewTestLdapConfigUserInfoUnprocessableEntity

func NewTestLdapConfigUserInfoUnprocessableEntity() *TestLdapConfigUserInfoUnprocessableEntity

NewTestLdapConfigUserInfoUnprocessableEntity creates a TestLdapConfigUserInfoUnprocessableEntity with default headers values

func (*TestLdapConfigUserInfoUnprocessableEntity) Error

type UpdateLdapConfigBadRequest

type UpdateLdapConfigBadRequest struct {
	Payload *models.Error
}

UpdateLdapConfigBadRequest handles this case with default header values.

Bad Request

func NewUpdateLdapConfigBadRequest

func NewUpdateLdapConfigBadRequest() *UpdateLdapConfigBadRequest

NewUpdateLdapConfigBadRequest creates a UpdateLdapConfigBadRequest with default headers values

func (*UpdateLdapConfigBadRequest) Error

type UpdateLdapConfigNotFound

type UpdateLdapConfigNotFound struct {
	Payload *models.Error
}

UpdateLdapConfigNotFound handles this case with default header values.

Not Found

func NewUpdateLdapConfigNotFound

func NewUpdateLdapConfigNotFound() *UpdateLdapConfigNotFound

NewUpdateLdapConfigNotFound creates a UpdateLdapConfigNotFound with default headers values

func (*UpdateLdapConfigNotFound) Error

func (o *UpdateLdapConfigNotFound) Error() string

type UpdateLdapConfigOK

type UpdateLdapConfigOK struct {
	Payload *models.LDAPConfig
}

UpdateLdapConfigOK handles this case with default header values.

New state for LDAP Configuration.

func NewUpdateLdapConfigOK

func NewUpdateLdapConfigOK() *UpdateLdapConfigOK

NewUpdateLdapConfigOK creates a UpdateLdapConfigOK with default headers values

func (*UpdateLdapConfigOK) Error

func (o *UpdateLdapConfigOK) Error() string

type UpdateLdapConfigParams

type UpdateLdapConfigParams struct {

	/*Body
	  LDAP Config

	*/
	Body *models.LDAPConfig

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

UpdateLdapConfigParams contains all the parameters to send to the API endpoint for the update ldap config operation typically these are written to a http.Request

func NewUpdateLdapConfigParams

func NewUpdateLdapConfigParams() *UpdateLdapConfigParams

NewUpdateLdapConfigParams creates a new UpdateLdapConfigParams object with the default values initialized.

func NewUpdateLdapConfigParamsWithContext

func NewUpdateLdapConfigParamsWithContext(ctx context.Context) *UpdateLdapConfigParams

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

func NewUpdateLdapConfigParamsWithHTTPClient

func NewUpdateLdapConfigParamsWithHTTPClient(client *http.Client) *UpdateLdapConfigParams

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

func NewUpdateLdapConfigParamsWithTimeout

func NewUpdateLdapConfigParamsWithTimeout(timeout time.Duration) *UpdateLdapConfigParams

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

func (*UpdateLdapConfigParams) SetBody

func (o *UpdateLdapConfigParams) SetBody(body *models.LDAPConfig)

SetBody adds the body to the update ldap config params

func (*UpdateLdapConfigParams) SetContext

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

SetContext adds the context to the update ldap config params

func (*UpdateLdapConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update ldap config params

func (*UpdateLdapConfigParams) SetTimeout

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

SetTimeout adds the timeout to the update ldap config params

func (*UpdateLdapConfigParams) WithBody

WithBody adds the body to the update ldap config params

func (*UpdateLdapConfigParams) WithContext

WithContext adds the context to the update ldap config params

func (*UpdateLdapConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update ldap config params

func (*UpdateLdapConfigParams) WithTimeout

WithTimeout adds the timeout to the update ldap config params

func (*UpdateLdapConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateLdapConfigReader

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

UpdateLdapConfigReader is a Reader for the UpdateLdapConfig structure.

func (*UpdateLdapConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateLdapConfigUnprocessableEntity

type UpdateLdapConfigUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateLdapConfigUnprocessableEntity handles this case with default header values.

Validation Error

func NewUpdateLdapConfigUnprocessableEntity

func NewUpdateLdapConfigUnprocessableEntity() *UpdateLdapConfigUnprocessableEntity

NewUpdateLdapConfigUnprocessableEntity creates a UpdateLdapConfigUnprocessableEntity with default headers values

func (*UpdateLdapConfigUnprocessableEntity) Error

type UpdateOidcConfigBadRequest

type UpdateOidcConfigBadRequest struct {
	Payload *models.Error
}

UpdateOidcConfigBadRequest handles this case with default header values.

Bad Request

func NewUpdateOidcConfigBadRequest

func NewUpdateOidcConfigBadRequest() *UpdateOidcConfigBadRequest

NewUpdateOidcConfigBadRequest creates a UpdateOidcConfigBadRequest with default headers values

func (*UpdateOidcConfigBadRequest) Error

type UpdateOidcConfigNotFound

type UpdateOidcConfigNotFound struct {
	Payload *models.Error
}

UpdateOidcConfigNotFound handles this case with default header values.

Not Found

func NewUpdateOidcConfigNotFound

func NewUpdateOidcConfigNotFound() *UpdateOidcConfigNotFound

NewUpdateOidcConfigNotFound creates a UpdateOidcConfigNotFound with default headers values

func (*UpdateOidcConfigNotFound) Error

func (o *UpdateOidcConfigNotFound) Error() string

type UpdateOidcConfigOK

type UpdateOidcConfigOK struct {
	Payload *models.OIDCConfig
}

UpdateOidcConfigOK handles this case with default header values.

New state for OIDC Configuration.

func NewUpdateOidcConfigOK

func NewUpdateOidcConfigOK() *UpdateOidcConfigOK

NewUpdateOidcConfigOK creates a UpdateOidcConfigOK with default headers values

func (*UpdateOidcConfigOK) Error

func (o *UpdateOidcConfigOK) Error() string

type UpdateOidcConfigParams

type UpdateOidcConfigParams struct {

	/*Body
	  OIDC Config

	*/
	Body *models.OIDCConfig

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

UpdateOidcConfigParams contains all the parameters to send to the API endpoint for the update oidc config operation typically these are written to a http.Request

func NewUpdateOidcConfigParams

func NewUpdateOidcConfigParams() *UpdateOidcConfigParams

NewUpdateOidcConfigParams creates a new UpdateOidcConfigParams object with the default values initialized.

func NewUpdateOidcConfigParamsWithContext

func NewUpdateOidcConfigParamsWithContext(ctx context.Context) *UpdateOidcConfigParams

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

func NewUpdateOidcConfigParamsWithHTTPClient

func NewUpdateOidcConfigParamsWithHTTPClient(client *http.Client) *UpdateOidcConfigParams

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

func NewUpdateOidcConfigParamsWithTimeout

func NewUpdateOidcConfigParamsWithTimeout(timeout time.Duration) *UpdateOidcConfigParams

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

func (*UpdateOidcConfigParams) SetBody

func (o *UpdateOidcConfigParams) SetBody(body *models.OIDCConfig)

SetBody adds the body to the update oidc config params

func (*UpdateOidcConfigParams) SetContext

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

SetContext adds the context to the update oidc config params

func (*UpdateOidcConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update oidc config params

func (*UpdateOidcConfigParams) SetTimeout

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

SetTimeout adds the timeout to the update oidc config params

func (*UpdateOidcConfigParams) WithBody

WithBody adds the body to the update oidc config params

func (*UpdateOidcConfigParams) WithContext

WithContext adds the context to the update oidc config params

func (*UpdateOidcConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update oidc config params

func (*UpdateOidcConfigParams) WithTimeout

WithTimeout adds the timeout to the update oidc config params

func (*UpdateOidcConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateOidcConfigReader

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

UpdateOidcConfigReader is a Reader for the UpdateOidcConfig structure.

func (*UpdateOidcConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateOidcConfigUnprocessableEntity

type UpdateOidcConfigUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateOidcConfigUnprocessableEntity handles this case with default header values.

Validation Error

func NewUpdateOidcConfigUnprocessableEntity

func NewUpdateOidcConfigUnprocessableEntity() *UpdateOidcConfigUnprocessableEntity

NewUpdateOidcConfigUnprocessableEntity creates a UpdateOidcConfigUnprocessableEntity with default headers values

func (*UpdateOidcConfigUnprocessableEntity) Error

type UpdateSamlConfigBadRequest

type UpdateSamlConfigBadRequest struct {
	Payload *models.Error
}

UpdateSamlConfigBadRequest handles this case with default header values.

Bad Request

func NewUpdateSamlConfigBadRequest

func NewUpdateSamlConfigBadRequest() *UpdateSamlConfigBadRequest

NewUpdateSamlConfigBadRequest creates a UpdateSamlConfigBadRequest with default headers values

func (*UpdateSamlConfigBadRequest) Error

type UpdateSamlConfigNotFound

type UpdateSamlConfigNotFound struct {
	Payload *models.Error
}

UpdateSamlConfigNotFound handles this case with default header values.

Not Found

func NewUpdateSamlConfigNotFound

func NewUpdateSamlConfigNotFound() *UpdateSamlConfigNotFound

NewUpdateSamlConfigNotFound creates a UpdateSamlConfigNotFound with default headers values

func (*UpdateSamlConfigNotFound) Error

func (o *UpdateSamlConfigNotFound) Error() string

type UpdateSamlConfigOK

type UpdateSamlConfigOK struct {
	Payload *models.SamlConfig
}

UpdateSamlConfigOK handles this case with default header values.

New state for SAML Configuration.

func NewUpdateSamlConfigOK

func NewUpdateSamlConfigOK() *UpdateSamlConfigOK

NewUpdateSamlConfigOK creates a UpdateSamlConfigOK with default headers values

func (*UpdateSamlConfigOK) Error

func (o *UpdateSamlConfigOK) Error() string

type UpdateSamlConfigParams

type UpdateSamlConfigParams struct {

	/*Body
	  SAML Config

	*/
	Body *models.SamlConfig

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

UpdateSamlConfigParams contains all the parameters to send to the API endpoint for the update saml config operation typically these are written to a http.Request

func NewUpdateSamlConfigParams

func NewUpdateSamlConfigParams() *UpdateSamlConfigParams

NewUpdateSamlConfigParams creates a new UpdateSamlConfigParams object with the default values initialized.

func NewUpdateSamlConfigParamsWithContext

func NewUpdateSamlConfigParamsWithContext(ctx context.Context) *UpdateSamlConfigParams

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

func NewUpdateSamlConfigParamsWithHTTPClient

func NewUpdateSamlConfigParamsWithHTTPClient(client *http.Client) *UpdateSamlConfigParams

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

func NewUpdateSamlConfigParamsWithTimeout

func NewUpdateSamlConfigParamsWithTimeout(timeout time.Duration) *UpdateSamlConfigParams

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

func (*UpdateSamlConfigParams) SetBody

func (o *UpdateSamlConfigParams) SetBody(body *models.SamlConfig)

SetBody adds the body to the update saml config params

func (*UpdateSamlConfigParams) SetContext

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

SetContext adds the context to the update saml config params

func (*UpdateSamlConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update saml config params

func (*UpdateSamlConfigParams) SetTimeout

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

SetTimeout adds the timeout to the update saml config params

func (*UpdateSamlConfigParams) WithBody

WithBody adds the body to the update saml config params

func (*UpdateSamlConfigParams) WithContext

WithContext adds the context to the update saml config params

func (*UpdateSamlConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update saml config params

func (*UpdateSamlConfigParams) WithTimeout

WithTimeout adds the timeout to the update saml config params

func (*UpdateSamlConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateSamlConfigReader

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

UpdateSamlConfigReader is a Reader for the UpdateSamlConfig structure.

func (*UpdateSamlConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateSamlConfigUnprocessableEntity

type UpdateSamlConfigUnprocessableEntity struct {
	Payload *models.ValidationError
}

UpdateSamlConfigUnprocessableEntity handles this case with default header values.

Validation Error

func NewUpdateSamlConfigUnprocessableEntity

func NewUpdateSamlConfigUnprocessableEntity() *UpdateSamlConfigUnprocessableEntity

NewUpdateSamlConfigUnprocessableEntity creates a UpdateSamlConfigUnprocessableEntity with default headers values

func (*UpdateSamlConfigUnprocessableEntity) Error

Jump to

Keyboard shortcuts

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