Commit 2393594c authored by Matthias Käppler's avatar Matthias Käppler

Merge branch '333233-deprecate-api-fuzz-conf-yaml-gql' into 'master'

Deprecate ApiFuzzingCiConfigurationCreate fields

See merge request gitlab-org/gitlab!74783
parents bf99494f d3f335b1
......@@ -676,9 +676,9 @@ Input type: `ApiFuzzingCiConfigurationCreateInput`
| Name | Type | Description |
| ---- | ---- | ----------- |
| <a id="mutationapifuzzingciconfigurationcreateclientmutationid"></a>`clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| <a id="mutationapifuzzingciconfigurationcreateconfigurationyaml"></a>`configurationYaml` | [`String`](#string) | A YAML snippet that can be inserted into the project's `.gitlab-ci.yml` to set up API fuzzing scans. |
| <a id="mutationapifuzzingciconfigurationcreateconfigurationyaml"></a>`configurationYaml` **{warning-solid}** | [`String`](#string) | **Deprecated:** The configuration snippet is now generated client-side. Deprecated in 14.6. |
| <a id="mutationapifuzzingciconfigurationcreateerrors"></a>`errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| <a id="mutationapifuzzingciconfigurationcreategitlabciyamleditpath"></a>`gitlabCiYamlEditPath` | [`String`](#string) | Location at which the project's `.gitlab-ci.yml` file can be edited in the browser. |
| <a id="mutationapifuzzingciconfigurationcreategitlabciyamleditpath"></a>`gitlabCiYamlEditPath` **{warning-solid}** | [`String`](#string) | **Deprecated:** The configuration snippet is now generated client-side. Deprecated in 14.6. |
### `Mutation.awardEmojiAdd`
......@@ -41,11 +41,13 @@ module Mutations
field :configuration_yaml, GraphQL::Types::String,
null: true,
deprecated: { reason: 'The configuration snippet is now generated client-side', milestone: '14.6' },
description: "A YAML snippet that can be inserted into the project's "\
'`.gitlab-ci.yml` to set up API fuzzing scans.'
field :gitlab_ci_yaml_edit_path, GraphQL::Types::String,
null: true,
deprecated: { reason: 'The configuration snippet is now generated client-side', milestone: '14.6' },
description: "Location at which the project's `.gitlab-ci.yml` file can be edited in the browser."
authorize :create_vulnerability
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment