github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/examples/unregister-integration-system/unregister-integration-system.graphql (about)

     1  # Code generated by Compass integration tests, DO NOT EDIT.
     2  mutation {
     3    result: unregisterIntegrationSystem(
     4      id: "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
     5    ) {
     6      id
     7      name
     8      description
     9      auths {
    10        id
    11        auth {
    12          credential {
    13            ... on BasicCredentialData {
    14              username
    15              password
    16            }
    17            ... on CertificateOAuthCredentialData {
    18              clientId
    19              certificate
    20              url
    21            }
    22            ... on OAuthCredentialData {
    23              clientId
    24              clientSecret
    25              url
    26            }
    27          }
    28          oneTimeToken {
    29            __typename
    30            token
    31            used
    32            expiresAt
    33          }
    34          certCommonName
    35          accessStrategy
    36          additionalHeaders
    37          additionalQueryParams
    38          requestAuth {
    39            csrf {
    40              tokenEndpointURL
    41              credential {
    42                ... on BasicCredentialData {
    43                  username
    44                  password
    45                }
    46                ... on OAuthCredentialData {
    47                  clientId
    48                  clientSecret
    49                  url
    50                }
    51                ... on CertificateOAuthCredentialData {
    52                  clientId
    53                  certificate
    54                  url
    55                }
    56              }
    57              additionalHeaders
    58              additionalQueryParams
    59            }
    60          }
    61        }
    62      }
    63    }
    64  }