All URIs are relative to /v3
Method | HTTP request | Description |
---|---|---|
CheckSaml | Get /is-saml-enabled | Check if SAML is enabled |
CheckSaml(ctx).Execute()
Check if SAML is enabled
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/delphix/dct-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.SamlLoginApi.CheckSaml(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SamlLoginApi.CheckSaml``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiCheckSamlRequest struct via the builder pattern
(empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]