Skip to content

Latest commit

 

History

History
66 lines (41 loc) · 1.35 KB

SamlLoginApi.md

File metadata and controls

66 lines (41 loc) · 1.35 KB

\SamlLoginApi

All URIs are relative to /v3

Method HTTP request Description
CheckSaml Get /is-saml-enabled Check if SAML is enabled

CheckSaml

CheckSaml(ctx).Execute()

Check if SAML is enabled

Example

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)
    }
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiCheckSamlRequest struct via the builder pattern

Return type

(empty response body)

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]