-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodel_version_control_information_dto.go
40 lines (39 loc) · 1.52 KB
/
model_version_control_information_dto.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Apache NiFi REST API
*
* REST API definition for Apache NiFi web services
*
* API version: 2.1.0
* Contact: [email protected]
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package nifi
// The Version Control information
type VersionControlInformationDto struct {
// The ID of the branch that the flow is stored in
Branch string `json:"branch,omitempty"`
// The ID of the bucket that the flow is stored in
BucketId string `json:"bucketId,omitempty"`
// The name of the bucket that the flow is stored in
BucketName string `json:"bucketName,omitempty"`
// The description of the flow
FlowDescription string `json:"flowDescription,omitempty"`
// The ID of the flow
FlowId string `json:"flowId,omitempty"`
// The name of the flow
FlowName string `json:"flowName,omitempty"`
// The ID of the Process Group that is under version control
GroupId string `json:"groupId,omitempty"`
// The ID of the registry that the flow is stored in
RegistryId string `json:"registryId,omitempty"`
// The name of the registry that the flow is stored in
RegistryName string `json:"registryName,omitempty"`
// The current state of the Process Group, as it relates to the Versioned Flow
State string `json:"state,omitempty"`
// Explanation of why the group is in the specified state
StateExplanation string `json:"stateExplanation,omitempty"`
// The storage location
StorageLocation string `json:"storageLocation,omitempty"`
// The version of the flow
Version interface{} `json:"version,omitempty"`
}