GraphQL API to delete instance Amazon S3 configurations
What does this MR do and why?
GraphQL API for deleting instance Amazon S3 configurations
Screenshots or screen recordings
Screenshots are required for UI changes, and strongly recommended for all other merge requests.
Before | After |
---|---|
How to set up and validate locally
Numbered steps to set up and validate the change are strongly suggested.
- Visit GraphiQL explorer
https://gdk.test:3000/-/graphql-explorer
- Run the following mutation to create a new
AuditEvents::Instance::AmazonS3Configuration
and also note down theid
.
mutation createInstanceAmazonS3Configuration {
auditEventsInstanceAmazonS3ConfigurationCreate(input: {name: "AWS S3 Sanbox Instance", awsRegion: "us-east-1", accessKeyXid: "AKIA1234AKIA1234", secretAccessKey: "SECRET123SECRET123", bucketName: "gitlab-audit-logs"}) {
errors,
instanceAmazonS3Configuration{
id,
name,
bucketName,
accessKeyXid,
awsRegion
}
}
- Run
AuditEvents::Instance::AmazonS3Configuration.last
in rails console and verify that a new instance Amazon S3 configuration is created. - Run the following graphQL query to delete the above record
mutation deleteInstanceAmazonS3Configuration {
auditEventsInstanceAmazonS3ConfigurationDelete(input: {id: "gid://gitlab/AuditEvents::Instance::AmazonS3Configuration/7"}) {
errors
}
}
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.
Related to #423235 (closed)