github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/examples/request-bundle-instance-auth-creation/request-bundle-instance-auth-creation.graphql (about)

     1  # Code generated by Compass integration tests, DO NOT EDIT.
     2  mutation {
     3    result: requestBundleInstanceAuthCreation(
     4      bundleID: "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
     5      in: {
     6        context: "{\"ContextData\":\"ContextValue\"}"
     7        inputParams: "{\"InKey\":\"InValue\"}"
     8      }
     9    ) {
    10      id
    11      context
    12      inputParams
    13      auth {
    14        credential {
    15          ... on BasicCredentialData {
    16            username
    17            password
    18          }
    19          ... on CertificateOAuthCredentialData {
    20            clientId
    21            certificate
    22            url
    23          }
    24          ... on OAuthCredentialData {
    25            clientId
    26            clientSecret
    27            url
    28          }
    29        }
    30        oneTimeToken {
    31          __typename
    32          token
    33          used
    34          expiresAt
    35        }
    36        certCommonName
    37        accessStrategy
    38        additionalHeaders
    39        additionalQueryParams
    40        requestAuth {
    41          csrf {
    42            tokenEndpointURL
    43            credential {
    44              ... on BasicCredentialData {
    45                username
    46                password
    47              }
    48              ... on OAuthCredentialData {
    49                clientId
    50                clientSecret
    51                url
    52              }
    53              ... on CertificateOAuthCredentialData {
    54                clientId
    55                certificate
    56                url
    57              }
    58            }
    59            additionalHeaders
    60            additionalQueryParams
    61          }
    62        }
    63      }
    64      status {
    65        condition
    66        timestamp
    67        message
    68        reason
    69      }
    70      runtimeID
    71      runtimeContextID
    72    }
    73  }