Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




List SAML Providers

POST ListSAMLProviders

Lists the SAML provider resource objects in the user's namespace.


Query Parameters

MarkerFor pagination, the value of the Marker element in the response that you received to indicate where the next call should start.
MaxItemsUse this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true and Marker contains a value to include in the subsequent call that tells the service where to continue from.

Required Roles

This call has no restrictions.


Request Payload

No Request Payload


Response Body

No Response Body


Examples

Request
POST https://192.168.0.0::4443/iam?Action=ListSAMLProviders

Accept: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
x-emc-namespace: <namespace>
Response
HTTP/1.1 200 OK
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:ListSAMLProvidersResponse xmlns:ns2="none">
    <ResponseMetadata>
        <RequestId>0af9f5b8:171648dacb1:1b9a8:87</RequestId>
    </ResponseMetadata>
    <ListSAMLProvidersResult>
        <IsTruncated>false</IsTruncated>
        <SAMLProviderList>
            <member>
                <Arn>urn:ecs:iam::ns:saml-provider/FinanceProvider</Arn>
                <CreateDate>2020-04-13T20:38:43Z</CreateDate>
                <ValidUntil>2120-03-20T20:38:43Z</ValidUntil>
            </member>
            <member>
                <Arn>urn:ecs:iam::ns:saml-provider/TestProvider</Arn>
                <CreateDate>2020-04-13T20:50:45Z</CreateDate>
                <ValidUntil>2120-03-20T20:50:45Z</ValidUntil>
            </member>
        </SAMLProviderList>
    </ListSAMLProvidersResult>
</ns2:ListSAMLProvidersResponse>