Documentation ¶
Index ¶
- Constants
- type PingoneAPI
- type PingoneService
- func (s *PingoneService) DeletePingOne4CCommand() (resp *http.Response, err error)
- func (s *PingoneService) GetPingOne4CCommand() (output *models.PingOne4CView, resp *http.Response, err error)
- func (s *PingoneService) GetPingOne4CMetadataCommand() (output *models.OIDCProviderMetadata, resp *http.Response, err error)
- func (s *PingoneService) UpdatePingOne4CCommand(input *UpdatePingOne4CCommandInput) (output *models.PingOne4CView, resp *http.Response, err error)
- type UpdatePingOne4CCommandInput
Constants ¶
View Source
const (
// ServiceName - The name of service.
ServiceName = "Pingone"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PingoneAPI ¶
type PingoneAPI interface { DeletePingOne4CCommand() (resp *http.Response, err error) GetPingOne4CCommand() (output *models.PingOne4CView, resp *http.Response, err error) UpdatePingOne4CCommand(input *UpdatePingOne4CCommandInput) (output *models.PingOne4CView, resp *http.Response, err error) GetPingOne4CMetadataCommand() (output *models.OIDCProviderMetadata, resp *http.Response, err error) }
type PingoneService ¶
PingoneService provides the API operations for making requests to Pingone endpoint.
func New ¶
func New(cfg *config.Config) *PingoneService
New createa a new instance of the PingoneService client.
Example:
cfg := config.NewConfig().WithUsername("Administrator").WithPassword("2Access").WithEndpoint(paURL) //Create a PingoneService from the configuration svc := pingone.New(cfg)
func (*PingoneService) DeletePingOne4CCommand ¶
func (s *PingoneService) DeletePingOne4CCommand() (resp *http.Response, err error)
DeletePingOne4CCommand - Resets the PingOne For Customers configuration to default values RequestType: DELETE Input:
func (*PingoneService) GetPingOne4CCommand ¶
func (s *PingoneService) GetPingOne4CCommand() (output *models.PingOne4CView, resp *http.Response, err error)
GetPingOne4CCommand - Get the PingOne For Customers configuration RequestType: GET Input:
func (*PingoneService) GetPingOne4CMetadataCommand ¶
func (s *PingoneService) GetPingOne4CMetadataCommand() (output *models.OIDCProviderMetadata, resp *http.Response, err error)
GetPingOne4CMetadataCommand - Get the PingOne for Customers metadata RequestType: GET Input:
func (*PingoneService) UpdatePingOne4CCommand ¶
func (s *PingoneService) UpdatePingOne4CCommand(input *UpdatePingOne4CCommandInput) (output *models.PingOne4CView, resp *http.Response, err error)
UpdatePingOne4CCommand - Update the PingOne For Customers configuration RequestType: PUT Input: input *UpdatePingOne4CCommandInput
type UpdatePingOne4CCommandInput ¶
type UpdatePingOne4CCommandInput struct {
Body models.PingOne4CView
}
UpdatePingOne4CCommandInput - Inputs for UpdatePingOne4CCommand
Click to show internal directories.
Click to hide internal directories.