File: operations.pb.go

package info (click to toggle)
golang-google-genproto 0.0~git20161115.08f135d-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 9,452 kB
  • sloc: sh: 85; makefile: 3
file content (179 lines) | stat: -rw-r--r-- 7,833 bytes parent folder | download
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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Code generated by protoc-gen-go.
// source: google.golang.org/genproto/googleapis/genomics/v1/operations.proto
// DO NOT EDIT!

package google_genomics_v1

import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "google.golang.org/genproto/googleapis/api/serviceconfig"
import google_protobuf5 "github.com/golang/protobuf/ptypes/any"
import google_protobuf6 "github.com/golang/protobuf/ptypes/timestamp"

// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf

// Metadata describing an [Operation][google.longrunning.Operation].
type OperationMetadata struct {
	// The Google Cloud Project in which the job is scoped.
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId" json:"project_id,omitempty"`
	// The time at which the job was submitted to the Genomics service.
	CreateTime *google_protobuf6.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime" json:"create_time,omitempty"`
	// The time at which the job began to run.
	StartTime *google_protobuf6.Timestamp `protobuf:"bytes,3,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
	// The time at which the job stopped running.
	EndTime *google_protobuf6.Timestamp `protobuf:"bytes,4,opt,name=end_time,json=endTime" json:"end_time,omitempty"`
	// The original request that started the operation. Note that this will be in
	// current version of the API. If the operation was started with v1beta2 API
	// and a GetOperation is performed on v1 API, a v1 request will be returned.
	Request *google_protobuf5.Any `protobuf:"bytes,5,opt,name=request" json:"request,omitempty"`
	// Optional event messages that were generated during the job's execution.
	// This also contains any warnings that were generated during import
	// or export.
	Events []*OperationEvent `protobuf:"bytes,6,rep,name=events" json:"events,omitempty"`
	// Optionally provided by the caller when submitting the request that creates
	// the operation.
	ClientId string `protobuf:"bytes,7,opt,name=client_id,json=clientId" json:"client_id,omitempty"`
	// Runtime metadata on this Operation.
	RuntimeMetadata *google_protobuf5.Any `protobuf:"bytes,8,opt,name=runtime_metadata,json=runtimeMetadata" json:"runtime_metadata,omitempty"`
}

func (m *OperationMetadata) Reset()                    { *m = OperationMetadata{} }
func (m *OperationMetadata) String() string            { return proto.CompactTextString(m) }
func (*OperationMetadata) ProtoMessage()               {}
func (*OperationMetadata) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{0} }

func (m *OperationMetadata) GetProjectId() string {
	if m != nil {
		return m.ProjectId
	}
	return ""
}

func (m *OperationMetadata) GetCreateTime() *google_protobuf6.Timestamp {
	if m != nil {
		return m.CreateTime
	}
	return nil
}

func (m *OperationMetadata) GetStartTime() *google_protobuf6.Timestamp {
	if m != nil {
		return m.StartTime
	}
	return nil
}

func (m *OperationMetadata) GetEndTime() *google_protobuf6.Timestamp {
	if m != nil {
		return m.EndTime
	}
	return nil
}

func (m *OperationMetadata) GetRequest() *google_protobuf5.Any {
	if m != nil {
		return m.Request
	}
	return nil
}

func (m *OperationMetadata) GetEvents() []*OperationEvent {
	if m != nil {
		return m.Events
	}
	return nil
}

func (m *OperationMetadata) GetClientId() string {
	if m != nil {
		return m.ClientId
	}
	return ""
}

func (m *OperationMetadata) GetRuntimeMetadata() *google_protobuf5.Any {
	if m != nil {
		return m.RuntimeMetadata
	}
	return nil
}

// An event that occurred during an [Operation][google.longrunning.Operation].
type OperationEvent struct {
	// Optional time of when event started.
	StartTime *google_protobuf6.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
	// Optional time of when event finished. An event can have a start time and no
	// finish time. If an event has a finish time, there must be a start time.
	EndTime *google_protobuf6.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime" json:"end_time,omitempty"`
	// Required description of event.
	Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
}

func (m *OperationEvent) Reset()                    { *m = OperationEvent{} }
func (m *OperationEvent) String() string            { return proto.CompactTextString(m) }
func (*OperationEvent) ProtoMessage()               {}
func (*OperationEvent) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{1} }

func (m *OperationEvent) GetStartTime() *google_protobuf6.Timestamp {
	if m != nil {
		return m.StartTime
	}
	return nil
}

func (m *OperationEvent) GetEndTime() *google_protobuf6.Timestamp {
	if m != nil {
		return m.EndTime
	}
	return nil
}

func (m *OperationEvent) GetDescription() string {
	if m != nil {
		return m.Description
	}
	return ""
}

func init() {
	proto.RegisterType((*OperationMetadata)(nil), "google.genomics.v1.OperationMetadata")
	proto.RegisterType((*OperationEvent)(nil), "google.genomics.v1.OperationEvent")
}

func init() {
	proto.RegisterFile("google.golang.org/genproto/googleapis/genomics/v1/operations.proto", fileDescriptor3)
}

var fileDescriptor3 = []byte{
	// 415 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x91, 0xc1, 0x8b, 0x13, 0x31,
	0x14, 0xc6, 0xc9, 0x56, 0xdb, 0xce, 0x2b, 0xb8, 0x1a, 0x44, 0x86, 0x8a, 0x50, 0x7a, 0xea, 0x29,
	0x61, 0x57, 0x3c, 0xe8, 0x1e, 0xc4, 0x82, 0x87, 0x1e, 0xc4, 0x65, 0xf0, 0x5e, 0xd2, 0xcc, 0xdb,
	0x18, 0xe9, 0x24, 0x31, 0x49, 0x0b, 0xfd, 0x7f, 0xbc, 0xf9, 0x0f, 0x7a, 0x94, 0x64, 0x66, 0xd6,
	0xd5, 0x15, 0x5b, 0x3c, 0x14, 0xca, 0xcb, 0xf7, 0xfb, 0xbe, 0x37, 0xdf, 0x83, 0xa5, 0xb2, 0x56,
	0x6d, 0x91, 0x29, 0xbb, 0x15, 0x46, 0x31, 0xeb, 0x15, 0x57, 0x68, 0x9c, 0xb7, 0xd1, 0xf2, 0xf6,
	0x49, 0x38, 0x1d, 0xd2, 0xcc, 0x36, 0x5a, 0x06, 0xbe, 0xbf, 0xe0, 0xd6, 0xa1, 0x17, 0x51, 0x5b,
	0x13, 0x58, 0xd6, 0x51, 0xda, 0x7b, 0x74, 0x22, 0xb6, 0xbf, 0x98, 0xae, 0x4e, 0xf3, 0x15, 0x4e,
	0xf3, 0x80, 0x7e, 0xaf, 0x25, 0x4a, 0x6b, 0x6e, 0xb4, 0xe2, 0xc2, 0x18, 0x1b, 0xef, 0xda, 0x4f,
	0xb9, 0xd2, 0xf1, 0xf3, 0x6e, 0xc3, 0xa4, 0x6d, 0x78, 0x6b, 0xc7, 0xf3, 0xc3, 0x66, 0x77, 0xc3,
	0x5d, 0x3c, 0x38, 0x0c, 0x5c, 0x98, 0x43, 0xfa, 0x75, 0xc0, 0xd5, 0x71, 0x20, 0xea, 0x06, 0x43,
	0x14, 0x8d, 0xfb, 0xf5, 0xaf, 0x85, 0xe7, 0xdf, 0x07, 0xf0, 0xe4, 0x63, 0xff, 0x85, 0x1f, 0x30,
	0x8a, 0x5a, 0x44, 0x41, 0x5f, 0x00, 0x38, 0x6f, 0xbf, 0xa0, 0x8c, 0x6b, 0x5d, 0x97, 0x64, 0x46,
	0x16, 0x45, 0x55, 0x74, 0x93, 0x55, 0x4d, 0xaf, 0x60, 0x22, 0x3d, 0x8a, 0x88, 0xeb, 0x64, 0x57,
	0x9e, 0xcd, 0xc8, 0x62, 0x72, 0x39, 0x65, 0x5d, 0x07, 0x7d, 0x38, 0xfb, 0xd4, 0x67, 0x55, 0xd0,
	0xca, 0xd3, 0x80, 0xbe, 0x06, 0x08, 0x51, 0xf8, 0xd8, 0xb2, 0x83, 0xa3, 0x6c, 0x91, 0xd5, 0x19,
	0x7d, 0x05, 0x63, 0x34, 0x75, 0x0b, 0x3e, 0x38, 0x0a, 0x8e, 0xd0, 0xd4, 0x19, 0x63, 0x30, 0xf2,
	0xf8, 0x75, 0x87, 0x21, 0x96, 0x0f, 0x33, 0xf5, 0xf4, 0x1e, 0xf5, 0xce, 0x1c, 0xaa, 0x5e, 0x44,
	0xdf, 0xc0, 0x10, 0xf7, 0x68, 0x62, 0x28, 0x87, 0xb3, 0xc1, 0x62, 0x72, 0x39, 0x67, 0xf7, 0x2f,
	0xce, 0x6e, 0x4b, 0x7b, 0x9f, 0xa4, 0x55, 0x47, 0xd0, 0xe7, 0x50, 0xc8, 0xad, 0x46, 0x93, 0x8b,
	0x1b, 0xe5, 0xe2, 0xc6, 0xed, 0x60, 0x55, 0xd3, 0xb7, 0xf0, 0xd8, 0xef, 0x4c, 0x5a, 0x7f, 0xdd,
	0x74, 0x55, 0x97, 0xe3, 0x7f, 0x6c, 0x74, 0xde, 0xa9, 0xfb, 0xbb, 0xcc, 0xbf, 0x11, 0x78, 0xf4,
	0x7b, 0xf0, 0x1f, 0x75, 0x92, 0xff, 0xad, 0xf3, 0xec, 0xf4, 0x3a, 0x67, 0x30, 0xa9, 0x31, 0x48,
	0xaf, 0x5d, 0xda, 0x22, 0x5f, 0xb0, 0xa8, 0xee, 0x8e, 0x96, 0x0c, 0x9e, 0x49, 0xdb, 0xfc, 0xa5,
	0xb5, 0xe5, 0xf9, 0xed, 0xf6, 0xe1, 0x3a, 0x45, 0x5c, 0x93, 0x1f, 0x84, 0x6c, 0x86, 0x39, 0xee,
	0xe5, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x33, 0x68, 0x2e, 0x11, 0x9e, 0x03, 0x00, 0x00,
}