Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::FactoryVSTSConfiguration

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb

Overview

Factory’s VSTS repo information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#account_nameString

Returns VSTS account name.

Returns:

  • (String)

    VSTS account name.



16
17
18
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 16

def 
  @account_name
end

#collaboration_branchString

Returns VSTS collaboration branch.

Returns:

  • (String)

    VSTS collaboration branch.



25
26
27
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 25

def collaboration_branch
  @collaboration_branch
end

#last_commit_idString

Returns VSTS last commit id.

Returns:

  • (String)

    VSTS last commit id.



31
32
33
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 31

def last_commit_id
  @last_commit_id
end

#project_nameString

Returns VSTS project name.

Returns:

  • (String)

    VSTS project name.



19
20
21
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 19

def project_name
  @project_name
end

#repository_nameString

Returns VSTS repository name.

Returns:

  • (String)

    VSTS repository name.



22
23
24
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 22

def repository_name
  @repository_name
end

#root_folderString

Returns VSTS root folder.

Returns:

  • (String)

    VSTS root folder.



28
29
30
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 28

def root_folder
  @root_folder
end

#tenant_idString

Returns VSTS tenant id.

Returns:

  • (String)

    VSTS tenant id.



34
35
36
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 34

def tenant_id
  @tenant_id
end

Class Method Details

.mapperObject

Mapper for FactoryVSTSConfiguration class as Ruby Hash. This will be used for serialization/deserialization.



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_vstsconfiguration.rb', line 41

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FactoryVSTSConfiguration',
    type: {
      name: 'Composite',
      class_name: 'FactoryVSTSConfiguration',
      model_properties: {
        account_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        },
        project_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'projectName',
          type: {
            name: 'String'
          }
        },
        repository_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'repositoryName',
          type: {
            name: 'String'
          }
        },
        collaboration_branch: {
          client_side_validation: true,
          required: false,
          serialized_name: 'collaborationBranch',
          type: {
            name: 'String'
          }
        },
        root_folder: {
          client_side_validation: true,
          required: false,
          serialized_name: 'rootFolder',
          type: {
            name: 'String'
          }
        },
        last_commit_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'lastCommitId',
          type: {
            name: 'String'
          }
        },
        tenant_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end