Добавление аккаунта GitLab
| Name | Type | Description | Notes |
|---|---|---|---|
| provider_type | object | Тип провайдера. | |
| provider_token | object | Токен доступа. <br> Для GitLab необходимо использовать персональный токен доступа. Инструкции по созданию можно найти в <a target='_blank' href='https://docs.GitLab.com/ee/user/profile/personal_access_tokens.html#create-a-personal-access-token'>документации GitLab</a>. <br> Установите следующие разрешения: `api` |
from timeweb_cloud_api.models.add_gitlab import AddGitlab
# TODO update the JSON string below
json = "{}"
# create an instance of AddGitlab from a JSON string
add_gitlab_instance = AddGitlab.from_json(json)
# print the JSON string representation of the object
print AddGitlab.to_json()
# convert the object into a dict
add_gitlab_dict = add_gitlab_instance.to_dict()
# create an instance of AddGitlab from a dict
add_gitlab_form_dict = add_gitlab.from_dict(add_gitlab_dict)