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

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