File: ci_configuration.py

package info (click to toggle)
vsts-cd-manager 1.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: python: 949; sh: 8; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding=utf-8
# --------------------------------------------------------------------------
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


class CiConfiguration(Model):
    _attribute_map = {
        'project': {'key': 'project', 'type': 'CiArtifact'},
        'build_definition': {'key': 'buildDefinition', 'type': 'CiArtifact'},
        'release_definition': {'key': 'releaseDefinition', 'type': 'CiArtifact'},
        'result': {'key': 'result', 'type': 'CiResult'},
    }

    def __init__(self, project=None, build_definition=None, release_definition=None, result=None):
        self.project = project
        self.build_definition = build_definition
        self.release_definition = release_definition
        self.result = result