{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-update-account-settings-input-schema.json", "title": "UpdateAccountSettingsInput", "description": "UpdateAccountSettingsInput schema from Amazon Proton API", "type": "object", "properties": { "deletePipelineProvisioningRepository": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Set to true to remove a configured pipeline repository from the account settings. Don't set this field if you are updating the configured pipeline repository." } ] }, "pipelineCodebuildRoleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArnOrEmptyString" }, { "description": "The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning." } ] }, "pipelineProvisioningRepository": { "allOf": [ { "$ref": "#/components/schemas/RepositoryBranchInput" }, { "description": "

A linked repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

To remove a previously configured repository, set deletePipelineProvisioningRepository to true, and don't set pipelineProvisioningRepository.

" } ] }, "pipelineServiceRoleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArnOrEmptyString" }, { "description": "

The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.

To remove a previously configured ARN, specify an empty string.

" } ] } } }