forked from microsoft/azure-devops-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request microsoft#189 from Microsoft/users/tedchamb/dev5
Update 5.1 apis to M149
- Loading branch information
Showing
48 changed files
with
2,886 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# -------------------------------------------------------------------------------------------- | ||
# Generated file, DO NOT EDIT | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
from .models import * | ||
from .cix_client import CixClient | ||
|
||
__all__ = [ | ||
'ConfigurationFile', | ||
'CreatePipelineConnectionInputs', | ||
'DetectedBuildFramework', | ||
'DetectedBuildTarget', | ||
'Operation', | ||
'OperationReference', | ||
'OperationResultReference', | ||
'PipelineConnection', | ||
'ReferenceLinks', | ||
'TeamProject', | ||
'TeamProjectReference', | ||
'Template', | ||
'TemplateParameterDefinition', | ||
'TemplateParameters', | ||
'WebApiTeamRef', | ||
'CixClient' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# -------------------------------------------------------------------------------------------- | ||
# Generated file, DO NOT EDIT | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
from msrest import Serializer, Deserializer | ||
from ...client import Client | ||
from . import models | ||
|
||
|
||
class CixClient(Client): | ||
"""Cix | ||
:param str base_url: Service URL | ||
:param Authentication creds: Authenticated credentials. | ||
""" | ||
|
||
def __init__(self, base_url=None, creds=None): | ||
super(CixClient, self).__init__(base_url, creds) | ||
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
resource_area_identifier = None | ||
|
||
def get_configurations(self, project, repository_type=None, repository_id=None, branch=None, service_connection_id=None): | ||
"""GetConfigurations. | ||
[Preview API] Gets a list of existing configuration files for the given repository. | ||
:param str project: Project ID or project name | ||
:param str repository_type: The type of the repository such as GitHub, TfsGit (i.e. Azure Repos), Bitbucket, etc. | ||
:param str repository_id: The vendor-specific identifier or the name of the repository, e.g. Microsoft/vscode (GitHub) or e9d82045-ddba-4e01-a63d-2ab9f040af62 (Azure Repos) | ||
:param str branch: The repository branch where to look for the configuration file. | ||
:param str service_connection_id: If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TfsGit (i.e. Azure Repos). | ||
:rtype: [ConfigurationFile] | ||
""" | ||
route_values = {} | ||
if project is not None: | ||
route_values['project'] = self._serialize.url('project', project, 'str') | ||
query_parameters = {} | ||
if repository_type is not None: | ||
query_parameters['repositoryType'] = self._serialize.query('repository_type', repository_type, 'str') | ||
if repository_id is not None: | ||
query_parameters['repositoryId'] = self._serialize.query('repository_id', repository_id, 'str') | ||
if branch is not None: | ||
query_parameters['branch'] = self._serialize.query('branch', branch, 'str') | ||
if service_connection_id is not None: | ||
query_parameters['serviceConnectionId'] = self._serialize.query('service_connection_id', service_connection_id, 'str') | ||
response = self._send(http_method='GET', | ||
location_id='8fc87684-9ebc-4c37-ab92-f4ac4a58cb3a', | ||
version='5.1-preview.1', | ||
route_values=route_values, | ||
query_parameters=query_parameters) | ||
return self._deserialize('[ConfigurationFile]', self._unwrap_collection(response)) | ||
|
||
def create_connection(self, create_connection_inputs): | ||
"""CreateConnection. | ||
[Preview API] LEGACY METHOD - Obsolete Creates a new team project with the name provided if one does not already exist and then creates a new Pipeline connection within that project. Returns an Operation object that wraps the Job and provides status | ||
:param :class:`<CreatePipelineConnectionInputs> <azure.devops.v5_1.cix.models.CreatePipelineConnectionInputs>` create_connection_inputs: | ||
:rtype: :class:`<Operation> <azure.devops.v5_1.cix.models.Operation>` | ||
""" | ||
content = self._serialize.body(create_connection_inputs, 'CreatePipelineConnectionInputs') | ||
response = self._send(http_method='POST', | ||
location_id='00df4879-9216-45d5-b38d-4a487b626b2c', | ||
version='5.1-preview.1', | ||
content=content) | ||
return self._deserialize('Operation', response) | ||
|
||
def create_project_connection(self, create_connection_inputs, project): | ||
"""CreateProjectConnection. | ||
[Preview API] Creates a new team project with the name provided if one does not already exist and then creates a new Pipeline connection within that project. Returns an Operation object that wraps the Job and provides status | ||
:param :class:`<CreatePipelineConnectionInputs> <azure.devops.v5_1.cix.models.CreatePipelineConnectionInputs>` create_connection_inputs: | ||
:param str project: | ||
:rtype: :class:`<PipelineConnection> <azure.devops.v5_1.cix.models.PipelineConnection>` | ||
""" | ||
query_parameters = {} | ||
if project is not None: | ||
query_parameters['project'] = self._serialize.query('project', project, 'str') | ||
content = self._serialize.body(create_connection_inputs, 'CreatePipelineConnectionInputs') | ||
response = self._send(http_method='POST', | ||
location_id='00df4879-9216-45d5-b38d-4a487b626b2c', | ||
version='5.1-preview.1', | ||
query_parameters=query_parameters, | ||
content=content) | ||
return self._deserialize('PipelineConnection', response) | ||
|
||
def get_detected_build_frameworks(self, project, repository_type=None, repository_id=None, branch=None, detection_type=None, service_connection_id=None): | ||
"""GetDetectedBuildFrameworks. | ||
[Preview API] Returns a list of build frameworks that best match the given repository based on its contents. | ||
:param str project: Project ID or project name | ||
:param str repository_type: The type of the repository such as GitHub, TfsGit (i.e. Azure Repos), Bitbucket, etc. | ||
:param str repository_id: The vendor-specific identifier or the name of the repository, e.g. Microsoft/vscode (GitHub) or e9d82045-ddba-4e01-a63d-2ab9f040af62 (Azure Repos) | ||
:param str branch: The repository branch to detect build frameworks for. | ||
:param str detection_type: | ||
:param str service_connection_id: If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TfsGit (i.e. Azure Repos). | ||
:rtype: [DetectedBuildFramework] | ||
""" | ||
route_values = {} | ||
if project is not None: | ||
route_values['project'] = self._serialize.url('project', project, 'str') | ||
query_parameters = {} | ||
if repository_type is not None: | ||
query_parameters['repositoryType'] = self._serialize.query('repository_type', repository_type, 'str') | ||
if repository_id is not None: | ||
query_parameters['repositoryId'] = self._serialize.query('repository_id', repository_id, 'str') | ||
if branch is not None: | ||
query_parameters['branch'] = self._serialize.query('branch', branch, 'str') | ||
if detection_type is not None: | ||
query_parameters['detectionType'] = self._serialize.query('detection_type', detection_type, 'str') | ||
if service_connection_id is not None: | ||
query_parameters['serviceConnectionId'] = self._serialize.query('service_connection_id', service_connection_id, 'str') | ||
response = self._send(http_method='GET', | ||
location_id='29a30bab-9efb-4652-bf1b-9269baca0980', | ||
version='5.1-preview.1', | ||
route_values=route_values, | ||
query_parameters=query_parameters) | ||
return self._deserialize('[DetectedBuildFramework]', self._unwrap_collection(response)) | ||
|
||
def get_template_recommendations(self, project, repository_type=None, repository_id=None, branch=None, service_connection_id=None): | ||
"""GetTemplateRecommendations. | ||
[Preview API] Returns a list of all YAML templates with weighting based on which would best fit the given repository. | ||
:param str project: Project ID or project name | ||
:param str repository_type: The type of the repository such as GitHub, TfsGit (i.e. Azure Repos), Bitbucket, etc. | ||
:param str repository_id: The vendor-specific identifier or the name of the repository, e.g. Microsoft/vscode (GitHub) or e9d82045-ddba-4e01-a63d-2ab9f040af62 (Azure Repos) | ||
:param str branch: The repository branch which to find matching templates for. | ||
:param str service_connection_id: If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TfsGit (i.e. Azure Repos). | ||
:rtype: [Template] | ||
""" | ||
route_values = {} | ||
if project is not None: | ||
route_values['project'] = self._serialize.url('project', project, 'str') | ||
query_parameters = {} | ||
if repository_type is not None: | ||
query_parameters['repositoryType'] = self._serialize.query('repository_type', repository_type, 'str') | ||
if repository_id is not None: | ||
query_parameters['repositoryId'] = self._serialize.query('repository_id', repository_id, 'str') | ||
if branch is not None: | ||
query_parameters['branch'] = self._serialize.query('branch', branch, 'str') | ||
if service_connection_id is not None: | ||
query_parameters['serviceConnectionId'] = self._serialize.query('service_connection_id', service_connection_id, 'str') | ||
response = self._send(http_method='GET', | ||
location_id='63ea8f13-b563-4be7-bc31-3a96eda27220', | ||
version='5.1-preview.1', | ||
route_values=route_values, | ||
query_parameters=query_parameters) | ||
return self._deserialize('[Template]', self._unwrap_collection(response)) | ||
|
||
def render_template(self, template_parameters, template_id): | ||
"""RenderTemplate. | ||
[Preview API] | ||
:param :class:`<TemplateParameters> <azure.devops.v5_1.cix.models.TemplateParameters>` template_parameters: | ||
:param str template_id: | ||
:rtype: :class:`<Template> <azure.devops.v5_1.cix.models.Template>` | ||
""" | ||
route_values = {} | ||
if template_id is not None: | ||
route_values['templateId'] = self._serialize.url('template_id', template_id, 'str') | ||
content = self._serialize.body(template_parameters, 'TemplateParameters') | ||
response = self._send(http_method='POST', | ||
location_id='eb5d6d1d-98a2-4bbd-9028-f9a6b2d66515', | ||
version='5.1-preview.1', | ||
route_values=route_values, | ||
content=content) | ||
return self._deserialize('Template', response) | ||
|
Oops, something went wrong.