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

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