updateLoginBridge()

API Stability Long-Term

The updateLoginBridge() GraphQL mutation is used to update settings for the login bridge.

Syntax

Below is the syntax for the updateLoginBridge() mutation field:

graphql
updateLoginBridge(
      input: LoginBridgeUpdateInput!
   ): LoginBridge!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  updateLoginBridge( input: 
    { name: "my-bridge",
      allowedUsers: [ "bob", "ted" ] }
  )
 { name }
}
Example Responses
Show:
json
{
  "data": {
    "updateLoginBridge": {
      "name": "my-bridge"
    }
  }
}

Given Datatypes

For LoginBridgeUpdateInput, there are several parameters that may be given. Below is a list of them along with a description of each:

Table: LoginBridgeUpdateInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 19, 2024
additionalAttributesstring   Any additional attributes.
allowedUsers[string]yes  A list of users allowed to access the bridge.
descriptionstring   A description of the login bridge to update.
generateUserNameboolean   Whether to generate user names.
groupAttributestring   The group attributes.
groups[string]yes  Any groups associated with the login bridge.
issuerstring   The issuer to update.
loginUrlstring   The URL of the login bridge.
namestring   The name of the login bridge to update.
organizationIdAttributeNamestring   The organization's unique identifier of the attribute name.
organizationNameAttributestring   The organization's name of the attribute.
privateSamlCertificatestring   The private SAML certificate.
publicSamlCertificatestring   The public SAML certificate.
relayStateUrlstring   The relay state URL.
remoteIdstring   The remote unique identifier of the login bridge.
samlEntityIdstring   The unique identifier of the SAML entity.
termsDescriptionstring   A description of the terms.
termsLinkstring   A link to the terms and conditions.

Returned Datatypes

The returned datatype LoginBridge has its own parameters. Below is a list of them along with their datatypes and a description of each:

Table: LoginBridge

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 26, 2024
additionalAttributesstring  Long-TermAny additional attributes.
allowedUsers[User]yes Long-TermA list of users allowed to access the bridge. See User.
anyUserAlreadyLoggedInViaLoginBridgebooleanyes Long-TermTrue if any user in this organization has logged in to CrowdStream via LogScale. Requires manage organizations permissions.Whether to generate user names.
descriptionstringyes Long-TermA description of the login bridge.
generateUserNamebooleanyes Long-TermWhether to generate user names.
groupAttributestringyes Long-TermAny group attributes.
groups[string]yes Long-TermAny groups associated with the login bridge.
issuerstringyes Long-TermThe issuer of the login bridge.
loginUrlstringyes Long-TermThe URL for logging in.
namestringyes Long-TermThe name of the login bridge.
organizationIdAttributeNamestringyes Long-TermThe organization's unique identifier of the attribute name.
organizationNameAttributeNamestring  Long-TermThe organization's name of the attribute name.
publicSamlCertificatestringyes Long-TermThe public SAML certificate.
relayStateUUrlstringyes Long-TermThe relay state URL.
remoteIdstringyes Long-TermThe unique identifier of the remote connection.
samlEntityIdstringyes Long-TermThe unique identifier of the SAML entity.
showTermsAndConditionsbooleanyes Long-TermWhether to show the terms and conditions.
termsDescriptionstringyes Long-TermA description of the terms.
termsLinkstringyes Long-TermA link to the terms and conditions.