Module: Static::GetSAMLIdentityProviderList

Defined in:
lib/static.rb

Constant Summary collapse

Name =
"GetSAMLIdentityProviderList"
Query =
<<-EOS
  query GetSAMLIdentityProviderList($clientId: String, $page: Int, $count: Int){
  GetSAMLIdentityProviderList(clientId: $clientId, page: $page, count: $count){
      totalCount
      list{
          _id
          name
          domain
          image
          appSecret
          appId
          clientId
          description
          isDeleted
          enabled
          when
          SPMetadata
          attributeNameFormat
          customAttributes
          emailDomainTransformation
          authnContextClassRef
          IdPMetadata
          assertionConsumerUrl
          bindings
          nameIds
          attributes
          enableSignRes
          resSignAlgorithm
          resAbstractAlgorithm
          resSignPublicKey
          resSignPrivateKey
          resSignPrivateKeyPass
          enableSignReq
          reqSignPublicKey
          enableEncryptRes
          resEncryptPublicKey
          css
      }
  }
}
EOS