Documentation ¶
Index ¶
- Constants
- type AddAuthnReqListCommandInput
- type AuthnReqListsAPI
- type AuthnReqListsService
- func (s *AuthnReqListsService) AddAuthnReqListCommand(input *AddAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
- func (s *AuthnReqListsService) DeleteAuthnReqListCommand(input *DeleteAuthnReqListCommandInput) (resp *http.Response, err error)
- func (s *AuthnReqListsService) GetAuthnReqListCommand(input *GetAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
- func (s *AuthnReqListsService) GetAuthnReqListsCommand(input *GetAuthnReqListsCommandInput) (output *models.AuthnReqListsView, resp *http.Response, err error)
- func (s *AuthnReqListsService) UpdateAuthnReqListCommand(input *UpdateAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
- type DeleteAuthnReqListCommandInput
- type GetAuthnReqListCommandInput
- type GetAuthnReqListsCommandInput
- type UpdateAuthnReqListCommandInput
Constants ¶
const (
// ServiceName - The name of service.
ServiceName = "AuthnReqLists"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddAuthnReqListCommandInput ¶
type AddAuthnReqListCommandInput struct {
Body models.AuthnReqListView
}
AddAuthnReqListCommandInput - Inputs for AddAuthnReqListCommand
type AuthnReqListsAPI ¶
type AuthnReqListsAPI interface { GetAuthnReqListsCommand(input *GetAuthnReqListsCommandInput) (output *models.AuthnReqListsView, resp *http.Response, err error) AddAuthnReqListCommand(input *AddAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error) DeleteAuthnReqListCommand(input *DeleteAuthnReqListCommandInput) (resp *http.Response, err error) GetAuthnReqListCommand(input *GetAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error) UpdateAuthnReqListCommand(input *UpdateAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error) }
type AuthnReqListsService ¶
AuthnReqListsService provides the API operations for making requests to AuthnReqLists endpoint.
func New ¶
func New(cfg *config.Config) *AuthnReqListsService
New createa a new instance of the AuthnReqListsService client.
Example:
cfg := config.NewConfig().WithUsername("Administrator").WithPassword("2Access").WithEndpoint(paURL) //Create a AuthnReqListsService from the configuration svc := authnReqLists.New(cfg)
func (*AuthnReqListsService) AddAuthnReqListCommand ¶
func (s *AuthnReqListsService) AddAuthnReqListCommand(input *AddAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
AddAuthnReqListCommand - Add an Authentication Requirement List RequestType: POST Input: input *AddAuthnReqListCommandInput
func (*AuthnReqListsService) DeleteAuthnReqListCommand ¶
func (s *AuthnReqListsService) DeleteAuthnReqListCommand(input *DeleteAuthnReqListCommandInput) (resp *http.Response, err error)
DeleteAuthnReqListCommand - Delete an Authentication Requirement List RequestType: DELETE Input: input *DeleteAuthnReqListCommandInput
func (*AuthnReqListsService) GetAuthnReqListCommand ¶
func (s *AuthnReqListsService) GetAuthnReqListCommand(input *GetAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
GetAuthnReqListCommand - Get an Authentication Requirement List RequestType: GET Input: input *GetAuthnReqListCommandInput
func (*AuthnReqListsService) GetAuthnReqListsCommand ¶
func (s *AuthnReqListsService) GetAuthnReqListsCommand(input *GetAuthnReqListsCommandInput) (output *models.AuthnReqListsView, resp *http.Response, err error)
GetAuthnReqListsCommand - Get all Authentication Requirement Lists RequestType: GET Input: input *GetAuthnReqListsCommandInput
func (*AuthnReqListsService) UpdateAuthnReqListCommand ¶
func (s *AuthnReqListsService) UpdateAuthnReqListCommand(input *UpdateAuthnReqListCommandInput) (output *models.AuthnReqListView, resp *http.Response, err error)
UpdateAuthnReqListCommand - Update an Authentication Requirement List RequestType: PUT Input: input *UpdateAuthnReqListCommandInput
type DeleteAuthnReqListCommandInput ¶
type DeleteAuthnReqListCommandInput struct {
Id string
}
DeleteAuthnReqListCommandInput - Inputs for DeleteAuthnReqListCommand
type GetAuthnReqListCommandInput ¶
type GetAuthnReqListCommandInput struct {
Id string
}
GetAuthnReqListCommandInput - Inputs for GetAuthnReqListCommand
type GetAuthnReqListsCommandInput ¶
type GetAuthnReqListsCommandInput struct { Page string NumberPerPage string Filter string Name string SortKey string Order string }
GetAuthnReqListsCommandInput - Inputs for GetAuthnReqListsCommand
type UpdateAuthnReqListCommandInput ¶
type UpdateAuthnReqListCommandInput struct { Body models.AuthnReqListView Id string }
UpdateAuthnReqListCommandInput - Inputs for UpdateAuthnReqListCommand