Source code for azure.mgmt.automation.models.source_control_create_or_update_parameters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class SourceControlCreateOrUpdateParameters(Model): """The parameters supplied to the create or update source control operation. :param repo_url: The repo url of the source control. :type repo_url: str :param branch: The repo branch of the source control. Include branch as empty string for VsoTfvc. :type branch: str :param folder_path: The folder path of the source control. Path must be relative. :type folder_path: str :param auto_sync: The auto async of the source control. Default is false. :type auto_sync: bool :param publish_runbook: The auto publish of the source control. Default is true. :type publish_runbook: bool :param source_type: The source type. Must be one of VsoGit, VsoTfvc, GitHub, case sensitive. Possible values include: 'VsoGit', 'VsoTfvc', 'GitHub' :type source_type: str or ~azure.mgmt.automation.models.SourceType :param security_token: The authorization token for the repo of the source control. :type security_token: ~azure.mgmt.automation.models.SourceControlSecurityTokenProperties :param description: The user description of the source control. :type description: str """ _validation = { 'repo_url': {'max_length': 2000}, 'branch': {'max_length': 255}, 'folder_path': {'max_length': 255}, 'description': {'max_length': 512}, } _attribute_map = { 'repo_url': {'key': 'properties.repoUrl', 'type': 'str'}, 'branch': {'key': 'properties.branch', 'type': 'str'}, 'folder_path': {'key': 'properties.folderPath', 'type': 'str'}, 'auto_sync': {'key': 'properties.autoSync', 'type': 'bool'}, 'publish_runbook': {'key': 'properties.publishRunbook', 'type': 'bool'}, 'source_type': {'key': 'properties.sourceType', 'type': 'str'}, 'security_token': {'key': 'properties.securityToken', 'type': 'SourceControlSecurityTokenProperties'}, 'description': {'key': 'properties.description', 'type': 'str'}, } def __init__(self, *, repo_url: str=None, branch: str=None, folder_path: str=None, auto_sync: bool=None, publish_runbook: bool=None, source_type=None, security_token=None, description: str=None, **kwargs) -> None: super(SourceControlCreateOrUpdateParameters, self).__init__(**kwargs) self.repo_url = repo_url self.branch = branch self.folder_path = folder_path self.auto_sync = auto_sync self.publish_runbook = publish_runbook self.source_type = source_type self.security_token = security_token self.description = description