Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.58 KB

File metadata and controls

31 lines (23 loc) · 1.58 KB

AddBitbucket

Добавление аккаунта Bitbucket

Properties

Name Type Description Notes
provider_type object Тип провайдера.
provider_token object Токен доступа. <br> Для Bitbucket необходимо использовать 'App password'. Инструкции по созданию можно найти в <a target='_blank' href='https://support.atlassian.com/bitbucket-cloud/docs/create-an-app-password/&#39;&gt;документации Bitbucket</a>. <br> Установите следующие разрешения: `Account: Read`, `Projects: Read`, `Repositories: Read`, `Webhooks: Read and write`
login object Логин пользователя Bitbucket.

Example

from timeweb_cloud_api.models.add_bitbucket import AddBitbucket

# TODO update the JSON string below
json = "{}"
# create an instance of AddBitbucket from a JSON string
add_bitbucket_instance = AddBitbucket.from_json(json)
# print the JSON string representation of the object
print AddBitbucket.to_json()

# convert the object into a dict
add_bitbucket_dict = add_bitbucket_instance.to_dict()
# create an instance of AddBitbucket from a dict
add_bitbucket_form_dict = add_bitbucket.from_dict(add_bitbucket_dict)

[Back to Model list] [Back to API list] [Back to README]