Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.41 KB

File metadata and controls

30 lines (22 loc) · 1.41 KB

AddGitlab

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

Properties

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&#39;&gt;документации GitLab</a>. <br> Установите следующие разрешения: `api`

Example

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)

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