Commit ae477f27 authored by Alex Kalderimis's avatar Alex Kalderimis

Merge branch '329585-set-devops-adoption-api-beta' into 'master'

[DevOps Adoption] Set GraphQL API as beta

See merge request gitlab-org/gitlab!61512
parents 39530b23 48545547
...@@ -85,7 +85,7 @@ Returns [`DesignManagement!`](#designmanagement). ...@@ -85,7 +85,7 @@ Returns [`DesignManagement!`](#designmanagement).
### `Query.devopsAdoptionSegments` ### `Query.devopsAdoptionSegments`
Get configured DevOps adoption segments on the instance. Get configured DevOps adoption segments on the instance. **BETA** This endpoint is subject to change without notice.
Returns [`DevopsAdoptionSegmentConnection`](#devopsadoptionsegmentconnection). Returns [`DevopsAdoptionSegmentConnection`](#devopsadoptionsegmentconnection).
...@@ -742,6 +742,8 @@ Input type: `BoardListUpdateLimitMetricsInput` ...@@ -742,6 +742,8 @@ Input type: `BoardListUpdateLimitMetricsInput`
### `Mutation.bulkFindOrCreateDevopsAdoptionSegments` ### `Mutation.bulkFindOrCreateDevopsAdoptionSegments`
**BETA** This endpoint is subject to change without notice.
Input type: `BulkFindOrCreateDevopsAdoptionSegmentsInput` Input type: `BulkFindOrCreateDevopsAdoptionSegmentsInput`
#### Arguments #### Arguments
...@@ -1074,6 +1076,8 @@ Input type: `CreateCustomEmojiInput` ...@@ -1074,6 +1076,8 @@ Input type: `CreateCustomEmojiInput`
### `Mutation.createDevopsAdoptionSegment` ### `Mutation.createDevopsAdoptionSegment`
**BETA** This endpoint is subject to change without notice.
Input type: `CreateDevopsAdoptionSegmentInput` Input type: `CreateDevopsAdoptionSegmentInput`
#### Arguments #### Arguments
...@@ -1655,6 +1659,8 @@ Input type: `DeleteAnnotationInput` ...@@ -1655,6 +1659,8 @@ Input type: `DeleteAnnotationInput`
### `Mutation.deleteDevopsAdoptionSegment` ### `Mutation.deleteDevopsAdoptionSegment`
**BETA** This endpoint is subject to change without notice.
Input type: `DeleteDevopsAdoptionSegmentInput` Input type: `DeleteDevopsAdoptionSegmentInput`
#### Arguments #### Arguments
......
...@@ -59,7 +59,7 @@ module EE ...@@ -59,7 +59,7 @@ module EE
field :devops_adoption_segments, ::Types::Admin::Analytics::DevopsAdoption::SegmentType.connection_type, field :devops_adoption_segments, ::Types::Admin::Analytics::DevopsAdoption::SegmentType.connection_type,
null: true, null: true,
description: 'Get configured DevOps adoption segments on the instance.', description: 'Get configured DevOps adoption segments on the instance. **BETA** This endpoint is subject to change without notice.',
resolver: ::Resolvers::Admin::Analytics::DevopsAdoption::SegmentsResolver resolver: ::Resolvers::Admin::Analytics::DevopsAdoption::SegmentsResolver
field :current_license, ::Types::Admin::CloudLicenses::CurrentLicenseType, field :current_license, ::Types::Admin::CloudLicenses::CurrentLicenseType,
......
...@@ -9,6 +9,8 @@ module Mutations ...@@ -9,6 +9,8 @@ module Mutations
graphql_name 'BulkFindOrCreateDevopsAdoptionSegments' graphql_name 'BulkFindOrCreateDevopsAdoptionSegments'
description '**BETA** This endpoint is subject to change without notice.'
argument :namespace_ids, [::Types::GlobalIDType[::Namespace]], argument :namespace_ids, [::Types::GlobalIDType[::Namespace]],
required: true, required: true,
description: 'List of Namespace IDs for the segments.' description: 'List of Namespace IDs for the segments.'
......
...@@ -9,6 +9,8 @@ module Mutations ...@@ -9,6 +9,8 @@ module Mutations
graphql_name 'CreateDevopsAdoptionSegment' graphql_name 'CreateDevopsAdoptionSegment'
description '**BETA** This endpoint is subject to change without notice.'
argument :namespace_id, ::Types::GlobalIDType[::Namespace], argument :namespace_id, ::Types::GlobalIDType[::Namespace],
required: true, required: true,
description: 'Namespace ID to set for the segment.' description: 'Namespace ID to set for the segment.'
......
...@@ -9,6 +9,8 @@ module Mutations ...@@ -9,6 +9,8 @@ module Mutations
graphql_name 'DeleteDevopsAdoptionSegment' graphql_name 'DeleteDevopsAdoptionSegment'
description '**BETA** This endpoint is subject to change without notice.'
argument :id, [::Types::GlobalIDType[::Analytics::DevopsAdoption::Segment]], argument :id, [::Types::GlobalIDType[::Analytics::DevopsAdoption::Segment]],
required: true, required: true,
description: 'One or many IDs of the segments to delete.' description: 'One or many IDs of the segments to delete.'
......
---
title: Make DevOps Adoption API as beta
merge_request: 61512
author:
type: other
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