Documentation ¶
Index ¶
- Constants
- type GetHttpsListenerCommandInput
- type GetHttpsListenersCommandInput
- type HttpsListenersAPI
- type HttpsListenersService
- func (s *HttpsListenersService) GetHttpsListenerCommand(input *GetHttpsListenerCommandInput) (output *models.HttpsListenerView, resp *http.Response, err error)
- func (s *HttpsListenersService) GetHttpsListenersCommand(input *GetHttpsListenersCommandInput) (output *models.HttpsListenersView, resp *http.Response, err error)
- func (s *HttpsListenersService) UpdateHttpsListener(input *UpdateHttpsListenerInput) (output *models.HttpsListenerView, resp *http.Response, err error)
- type UpdateHttpsListenerInput
Constants ¶
const (
// ServiceName - The name of service.
ServiceName = "HttpsListeners"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetHttpsListenerCommandInput ¶
type GetHttpsListenerCommandInput struct {
Id string
}
GetHttpsListenerCommandInput - Inputs for GetHttpsListenerCommand
type GetHttpsListenersCommandInput ¶
GetHttpsListenersCommandInput - Inputs for GetHttpsListenersCommand
type HttpsListenersAPI ¶
type HttpsListenersAPI interface { GetHttpsListenersCommand(input *GetHttpsListenersCommandInput) (output *models.HttpsListenersView, resp *http.Response, err error) GetHttpsListenerCommand(input *GetHttpsListenerCommandInput) (output *models.HttpsListenerView, resp *http.Response, err error) UpdateHttpsListener(input *UpdateHttpsListenerInput) (output *models.HttpsListenerView, resp *http.Response, err error) }
type HttpsListenersService ¶
HttpsListenersService provides the API operations for making requests to HttpsListeners endpoint.
func New ¶
func New(cfg *config.Config) *HttpsListenersService
New createa a new instance of the HttpsListenersService client.
Example:
cfg := config.NewConfig().WithUsername("Administrator").WithPassword("2FederateM0re").WithEndpoint(paURL.String()) //Create a HttpsListenersService from the configuration svc := httpsListeners.New(cfg)
func (*HttpsListenersService) GetHttpsListenerCommand ¶
func (s *HttpsListenersService) GetHttpsListenerCommand(input *GetHttpsListenerCommandInput) (output *models.HttpsListenerView, resp *http.Response, err error)
GetHttpsListenerCommand - Get an HTTPS Listener RequestType: GET Input: input *GetHttpsListenerCommandInput
func (*HttpsListenersService) GetHttpsListenersCommand ¶
func (s *HttpsListenersService) GetHttpsListenersCommand(input *GetHttpsListenersCommandInput) (output *models.HttpsListenersView, resp *http.Response, err error)
GetHttpsListenersCommand - Get all HTTPS Listeners RequestType: GET Input: input *GetHttpsListenersCommandInput
func (*HttpsListenersService) UpdateHttpsListener ¶
func (s *HttpsListenersService) UpdateHttpsListener(input *UpdateHttpsListenerInput) (output *models.HttpsListenerView, resp *http.Response, err error)
UpdateHttpsListener - Update an HTTPS Listener RequestType: PUT Input: input *UpdateHttpsListenerInput
type UpdateHttpsListenerInput ¶
type UpdateHttpsListenerInput struct { Body models.HttpsListenerView Id string }
UpdateHttpsListenerInput - Inputs for UpdateHttpsListener