| OLD | NEW |
| 1 // Code generated by protoc-gen-go. | 1 // Code generated by protoc-gen-go. |
| 2 // source: github.com/luci/luci-go/deploytool/api/deploy/component.proto | 2 // source: github.com/luci/luci-go/deploytool/api/deploy/component.proto |
| 3 // DO NOT EDIT! | 3 // DO NOT EDIT! |
| 4 | 4 |
| 5 package deploy | 5 package deploy |
| 6 | 6 |
| 7 import proto "github.com/golang/protobuf/proto" | 7 import proto "github.com/golang/protobuf/proto" |
| 8 import fmt "fmt" | 8 import fmt "fmt" |
| 9 import math "math" | 9 import math "math" |
| 10 import google_protobuf "github.com/luci/luci-go/common/proto/google" | 10 import google_protobuf "github.com/luci/luci-go/common/proto/google" |
| 11 | 11 |
| 12 // Reference imports to suppress errors if they are not otherwise used. | 12 // Reference imports to suppress errors if they are not otherwise used. |
| 13 var _ = proto.Marshal | 13 var _ = proto.Marshal |
| 14 var _ = fmt.Errorf | 14 var _ = fmt.Errorf |
| 15 var _ = math.Inf | 15 var _ = math.Inf |
| 16 | 16 |
| 17 type Duration_Unit int32 |
| 18 |
| 19 const ( |
| 20 Duration_MILLISECONDS Duration_Unit = 0 |
| 21 Duration_SECONDS Duration_Unit = 1 |
| 22 Duration_MINUTES Duration_Unit = 2 |
| 23 Duration_HOURS Duration_Unit = 3 |
| 24 Duration_DAYS Duration_Unit = 4 |
| 25 ) |
| 26 |
| 27 var Duration_Unit_name = map[int32]string{ |
| 28 0: "MILLISECONDS", |
| 29 1: "SECONDS", |
| 30 2: "MINUTES", |
| 31 3: "HOURS", |
| 32 4: "DAYS", |
| 33 } |
| 34 var Duration_Unit_value = map[string]int32{ |
| 35 "MILLISECONDS": 0, |
| 36 "SECONDS": 1, |
| 37 "MINUTES": 2, |
| 38 "HOURS": 3, |
| 39 "DAYS": 4, |
| 40 } |
| 41 |
| 42 func (x Duration_Unit) String() string { |
| 43 return proto.EnumName(Duration_Unit_name, int32(x)) |
| 44 } |
| 45 func (Duration_Unit) EnumDescriptor() ([]byte, []int) { return fileDescriptor1,
[]int{2, 0} } |
| 46 |
| 47 // * Generic instance class types. |
| 48 type AppEngineModule_ClassicParams_InstanceClass int32 |
| 49 |
| 50 const ( |
| 51 // * Default for this scaling type. |
| 52 AppEngineModule_ClassicParams_IC_DEFAULT AppEngineModule_ClassicParams_I
nstanceClass = 0 |
| 53 // 1-core |
| 54 AppEngineModule_ClassicParams_IC_1 AppEngineModule_ClassicParams_Instanc
eClass = 1 |
| 55 // 2-core |
| 56 AppEngineModule_ClassicParams_IC_2 AppEngineModule_ClassicParams_Instanc
eClass = 2 |
| 57 // 4-core |
| 58 AppEngineModule_ClassicParams_IC_4 AppEngineModule_ClassicParams_Instanc
eClass = 3 |
| 59 // 4-core, 1G memory |
| 60 AppEngineModule_ClassicParams_IC_4_1G AppEngineModule_ClassicParams_Inst
anceClass = 4 |
| 61 // 8-core instance class. Only available with basic/manual scaling. |
| 62 AppEngineModule_ClassicParams_IC_8 AppEngineModule_ClassicParams_Instanc
eClass = 5 |
| 63 ) |
| 64 |
| 65 var AppEngineModule_ClassicParams_InstanceClass_name = map[int32]string{ |
| 66 0: "IC_DEFAULT", |
| 67 1: "IC_1", |
| 68 2: "IC_2", |
| 69 3: "IC_4", |
| 70 4: "IC_4_1G", |
| 71 5: "IC_8", |
| 72 } |
| 73 var AppEngineModule_ClassicParams_InstanceClass_value = map[string]int32{ |
| 74 "IC_DEFAULT": 0, |
| 75 "IC_1": 1, |
| 76 "IC_2": 2, |
| 77 "IC_4": 3, |
| 78 "IC_4_1G": 4, |
| 79 "IC_8": 5, |
| 80 } |
| 81 |
| 82 func (x AppEngineModule_ClassicParams_InstanceClass) String() string { |
| 83 return proto.EnumName(AppEngineModule_ClassicParams_InstanceClass_name,
int32(x)) |
| 84 } |
| 85 func (AppEngineModule_ClassicParams_InstanceClass) EnumDescriptor() ([]byte, []i
nt) { |
| 86 return fileDescriptor1, []int{3, 2, 0} |
| 87 } |
| 88 |
| 17 // * Option for "login" handler field. | 89 // * Option for "login" handler field. |
| 18 type AppEngineModule_Handler_LoginOption int32 | 90 type AppEngineModule_Handler_LoginOption int32 |
| 19 | 91 |
| 20 const ( | 92 const ( |
| 21 AppEngineModule_Handler_LOGIN_OPTIONAL AppEngineModule_Handler_LoginOpti
on = 0 | 93 AppEngineModule_Handler_LOGIN_OPTIONAL AppEngineModule_Handler_LoginOpti
on = 0 |
| 22 AppEngineModule_Handler_LOGIN_REQUIRED AppEngineModule_Handler_LoginOpti
on = 1 | 94 AppEngineModule_Handler_LOGIN_REQUIRED AppEngineModule_Handler_LoginOpti
on = 1 |
| 23 AppEngineModule_Handler_LOGIN_ADMIN AppEngineModule_Handler_LoginOpti
on = 2 | 95 AppEngineModule_Handler_LOGIN_ADMIN AppEngineModule_Handler_LoginOpti
on = 2 |
| 24 ) | 96 ) |
| 25 | 97 |
| 26 var AppEngineModule_Handler_LoginOption_name = map[int32]string{ | 98 var AppEngineModule_Handler_LoginOption_name = map[int32]string{ |
| 27 0: "LOGIN_OPTIONAL", | 99 0: "LOGIN_OPTIONAL", |
| 28 1: "LOGIN_REQUIRED", | 100 1: "LOGIN_REQUIRED", |
| 29 2: "LOGIN_ADMIN", | 101 2: "LOGIN_ADMIN", |
| 30 } | 102 } |
| 31 var AppEngineModule_Handler_LoginOption_value = map[string]int32{ | 103 var AppEngineModule_Handler_LoginOption_value = map[string]int32{ |
| 32 "LOGIN_OPTIONAL": 0, | 104 "LOGIN_OPTIONAL": 0, |
| 33 "LOGIN_REQUIRED": 1, | 105 "LOGIN_REQUIRED": 1, |
| 34 "LOGIN_ADMIN": 2, | 106 "LOGIN_ADMIN": 2, |
| 35 } | 107 } |
| 36 | 108 |
| 37 func (x AppEngineModule_Handler_LoginOption) String() string { | 109 func (x AppEngineModule_Handler_LoginOption) String() string { |
| 38 return proto.EnumName(AppEngineModule_Handler_LoginOption_name, int32(x)
) | 110 return proto.EnumName(AppEngineModule_Handler_LoginOption_name, int32(x)
) |
| 39 } | 111 } |
| 40 func (AppEngineModule_Handler_LoginOption) EnumDescriptor() ([]byte, []int) { | 112 func (AppEngineModule_Handler_LoginOption) EnumDescriptor() ([]byte, []int) { |
| 41 » return fileDescriptor1, []int{2, 3, 0} | 113 » return fileDescriptor1, []int{3, 4, 0} |
| 42 } | 114 } |
| 43 | 115 |
| 44 // * Option for "secure" handler field. | 116 // * Option for "secure" handler field. |
| 45 type AppEngineModule_Handler_SecureOption int32 | 117 type AppEngineModule_Handler_SecureOption int32 |
| 46 | 118 |
| 47 const ( | 119 const ( |
| 48 AppEngineModule_Handler_SECURE_ALWAYS AppEngineModule_Handler_SecureOp
tion = 0 | 120 AppEngineModule_Handler_SECURE_ALWAYS AppEngineModule_Handler_SecureOp
tion = 0 |
| 49 AppEngineModule_Handler_SECURE_OPTIONAL AppEngineModule_Handler_SecureOp
tion = 1 | 121 AppEngineModule_Handler_SECURE_OPTIONAL AppEngineModule_Handler_SecureOp
tion = 1 |
| 50 AppEngineModule_Handler_SECURE_NEVER AppEngineModule_Handler_SecureOp
tion = 2 | 122 AppEngineModule_Handler_SECURE_NEVER AppEngineModule_Handler_SecureOp
tion = 2 |
| 51 ) | 123 ) |
| 52 | 124 |
| 53 var AppEngineModule_Handler_SecureOption_name = map[int32]string{ | 125 var AppEngineModule_Handler_SecureOption_name = map[int32]string{ |
| 54 0: "SECURE_ALWAYS", | 126 0: "SECURE_ALWAYS", |
| 55 1: "SECURE_OPTIONAL", | 127 1: "SECURE_OPTIONAL", |
| 56 2: "SECURE_NEVER", | 128 2: "SECURE_NEVER", |
| 57 } | 129 } |
| 58 var AppEngineModule_Handler_SecureOption_value = map[string]int32{ | 130 var AppEngineModule_Handler_SecureOption_value = map[string]int32{ |
| 59 "SECURE_ALWAYS": 0, | 131 "SECURE_ALWAYS": 0, |
| 60 "SECURE_OPTIONAL": 1, | 132 "SECURE_OPTIONAL": 1, |
| 61 "SECURE_NEVER": 2, | 133 "SECURE_NEVER": 2, |
| 62 } | 134 } |
| 63 | 135 |
| 64 func (x AppEngineModule_Handler_SecureOption) String() string { | 136 func (x AppEngineModule_Handler_SecureOption) String() string { |
| 65 return proto.EnumName(AppEngineModule_Handler_SecureOption_name, int32(x
)) | 137 return proto.EnumName(AppEngineModule_Handler_SecureOption_name, int32(x
)) |
| 66 } | 138 } |
| 67 func (AppEngineModule_Handler_SecureOption) EnumDescriptor() ([]byte, []int) { | 139 func (AppEngineModule_Handler_SecureOption) EnumDescriptor() ([]byte, []int) { |
| 68 » return fileDescriptor1, []int{2, 3, 1} | 140 » return fileDescriptor1, []int{3, 4, 1} |
| 69 } | 141 } |
| 70 | 142 |
| 71 // Property sort direction. | 143 // Property sort direction. |
| 72 type AppEngineResources_Index_Direction int32 | 144 type AppEngineResources_Index_Direction int32 |
| 73 | 145 |
| 74 const ( | 146 const ( |
| 75 // Ascending order (default). | 147 // Ascending order (default). |
| 76 AppEngineResources_Index_ASCENDING AppEngineResources_Index_Direction =
0 | 148 AppEngineResources_Index_ASCENDING AppEngineResources_Index_Direction =
0 |
| 77 // Descending order. | 149 // Descending order. |
| 78 AppEngineResources_Index_DESCENDING AppEngineResources_Index_Direction =
1 | 150 AppEngineResources_Index_DESCENDING AppEngineResources_Index_Direction =
1 |
| 79 ) | 151 ) |
| 80 | 152 |
| 81 var AppEngineResources_Index_Direction_name = map[int32]string{ | 153 var AppEngineResources_Index_Direction_name = map[int32]string{ |
| 82 0: "ASCENDING", | 154 0: "ASCENDING", |
| 83 1: "DESCENDING", | 155 1: "DESCENDING", |
| 84 } | 156 } |
| 85 var AppEngineResources_Index_Direction_value = map[string]int32{ | 157 var AppEngineResources_Index_Direction_value = map[string]int32{ |
| 86 "ASCENDING": 0, | 158 "ASCENDING": 0, |
| 87 "DESCENDING": 1, | 159 "DESCENDING": 1, |
| 88 } | 160 } |
| 89 | 161 |
| 90 func (x AppEngineResources_Index_Direction) String() string { | 162 func (x AppEngineResources_Index_Direction) String() string { |
| 91 return proto.EnumName(AppEngineResources_Index_Direction_name, int32(x)) | 163 return proto.EnumName(AppEngineResources_Index_Direction_name, int32(x)) |
| 92 } | 164 } |
| 93 func (AppEngineResources_Index_Direction) EnumDescriptor() ([]byte, []int) { | 165 func (AppEngineResources_Index_Direction) EnumDescriptor() ([]byte, []int) { |
| 94 » return fileDescriptor1, []int{3, 0, 0} | 166 » return fileDescriptor1, []int{4, 0, 0} |
| 95 } | 167 } |
| 96 | 168 |
| 97 type KubernetesPod_RestartPolicy int32 | 169 type KubernetesPod_RestartPolicy int32 |
| 98 | 170 |
| 99 const ( | 171 const ( |
| 100 KubernetesPod_RESTART_ALWAYS KubernetesPod_RestartPolicy = 0 | 172 KubernetesPod_RESTART_ALWAYS KubernetesPod_RestartPolicy = 0 |
| 101 KubernetesPod_RESTART_ON_FAILURE KubernetesPod_RestartPolicy = 1 | 173 KubernetesPod_RESTART_ON_FAILURE KubernetesPod_RestartPolicy = 1 |
| 102 KubernetesPod_RESTART_NEVER KubernetesPod_RestartPolicy = 2 | 174 KubernetesPod_RESTART_NEVER KubernetesPod_RestartPolicy = 2 |
| 103 ) | 175 ) |
| 104 | 176 |
| 105 var KubernetesPod_RestartPolicy_name = map[int32]string{ | 177 var KubernetesPod_RestartPolicy_name = map[int32]string{ |
| 106 0: "RESTART_ALWAYS", | 178 0: "RESTART_ALWAYS", |
| 107 1: "RESTART_ON_FAILURE", | 179 1: "RESTART_ON_FAILURE", |
| 108 2: "RESTART_NEVER", | 180 2: "RESTART_NEVER", |
| 109 } | 181 } |
| 110 var KubernetesPod_RestartPolicy_value = map[string]int32{ | 182 var KubernetesPod_RestartPolicy_value = map[string]int32{ |
| 111 "RESTART_ALWAYS": 0, | 183 "RESTART_ALWAYS": 0, |
| 112 "RESTART_ON_FAILURE": 1, | 184 "RESTART_ON_FAILURE": 1, |
| 113 "RESTART_NEVER": 2, | 185 "RESTART_NEVER": 2, |
| 114 } | 186 } |
| 115 | 187 |
| 116 func (x KubernetesPod_RestartPolicy) String() string { | 188 func (x KubernetesPod_RestartPolicy) String() string { |
| 117 return proto.EnumName(KubernetesPod_RestartPolicy_name, int32(x)) | 189 return proto.EnumName(KubernetesPod_RestartPolicy_name, int32(x)) |
| 118 } | 190 } |
| 119 func (KubernetesPod_RestartPolicy) EnumDescriptor() ([]byte, []int) { | 191 func (KubernetesPod_RestartPolicy) EnumDescriptor() ([]byte, []int) { |
| 120 » return fileDescriptor1, []int{5, 0} | 192 » return fileDescriptor1, []int{6, 0} |
| 121 } | 193 } |
| 122 | 194 |
| 123 type KubernetesPod_Container_Type int32 | 195 type KubernetesPod_Container_Type int32 |
| 124 | 196 |
| 125 const ( | 197 const ( |
| 126 // * | 198 // * |
| 127 // A Go container. | 199 // A Go container. |
| 128 // | 200 // |
| 129 // The image for this container will be built in a | 201 // The image for this container will be built in a |
| 130 // directory containing all of the immediate contents of "path" and | 202 // directory containing all of the immediate contents of "path" and |
| 131 // the contents of GOPATH at "_gopath/src". | 203 // the contents of GOPATH at "_gopath/src". |
| 132 KubernetesPod_Container_GO KubernetesPod_Container_Type = 0 | 204 KubernetesPod_Container_GO KubernetesPod_Container_Type = 0 |
| 133 ) | 205 ) |
| 134 | 206 |
| 135 var KubernetesPod_Container_Type_name = map[int32]string{ | 207 var KubernetesPod_Container_Type_name = map[int32]string{ |
| 136 0: "GO", | 208 0: "GO", |
| 137 } | 209 } |
| 138 var KubernetesPod_Container_Type_value = map[string]int32{ | 210 var KubernetesPod_Container_Type_value = map[string]int32{ |
| 139 "GO": 0, | 211 "GO": 0, |
| 140 } | 212 } |
| 141 | 213 |
| 142 func (x KubernetesPod_Container_Type) String() string { | 214 func (x KubernetesPod_Container_Type) String() string { |
| 143 return proto.EnumName(KubernetesPod_Container_Type_name, int32(x)) | 215 return proto.EnumName(KubernetesPod_Container_Type_name, int32(x)) |
| 144 } | 216 } |
| 145 func (KubernetesPod_Container_Type) EnumDescriptor() ([]byte, []int) { | 217 func (KubernetesPod_Container_Type) EnumDescriptor() ([]byte, []int) { |
| 146 » return fileDescriptor1, []int{5, 0, 0} | 218 » return fileDescriptor1, []int{6, 0, 0} |
| 147 } | 219 } |
| 148 | 220 |
| 149 type KubernetesPod_Container_ContainerPort_Protocol int32 | 221 type KubernetesPod_Container_ContainerPort_Protocol int32 |
| 150 | 222 |
| 151 const ( | 223 const ( |
| 152 KubernetesPod_Container_ContainerPort_TCP KubernetesPod_Container_Contai
nerPort_Protocol = 0 | 224 KubernetesPod_Container_ContainerPort_TCP KubernetesPod_Container_Contai
nerPort_Protocol = 0 |
| 153 KubernetesPod_Container_ContainerPort_UDP KubernetesPod_Container_Contai
nerPort_Protocol = 1 | 225 KubernetesPod_Container_ContainerPort_UDP KubernetesPod_Container_Contai
nerPort_Protocol = 1 |
| 154 ) | 226 ) |
| 155 | 227 |
| 156 var KubernetesPod_Container_ContainerPort_Protocol_name = map[int32]string{ | 228 var KubernetesPod_Container_ContainerPort_Protocol_name = map[int32]string{ |
| 157 0: "TCP", | 229 0: "TCP", |
| 158 1: "UDP", | 230 1: "UDP", |
| 159 } | 231 } |
| 160 var KubernetesPod_Container_ContainerPort_Protocol_value = map[string]int32{ | 232 var KubernetesPod_Container_ContainerPort_Protocol_value = map[string]int32{ |
| 161 "TCP": 0, | 233 "TCP": 0, |
| 162 "UDP": 1, | 234 "UDP": 1, |
| 163 } | 235 } |
| 164 | 236 |
| 165 func (x KubernetesPod_Container_ContainerPort_Protocol) String() string { | 237 func (x KubernetesPod_Container_ContainerPort_Protocol) String() string { |
| 166 return proto.EnumName(KubernetesPod_Container_ContainerPort_Protocol_nam
e, int32(x)) | 238 return proto.EnumName(KubernetesPod_Container_ContainerPort_Protocol_nam
e, int32(x)) |
| 167 } | 239 } |
| 168 func (KubernetesPod_Container_ContainerPort_Protocol) EnumDescriptor() ([]byte,
[]int) { | 240 func (KubernetesPod_Container_ContainerPort_Protocol) EnumDescriptor() ([]byte,
[]int) { |
| 169 » return fileDescriptor1, []int{5, 0, 0, 0} | 241 » return fileDescriptor1, []int{6, 0, 0, 0} |
| 170 } | 242 } |
| 171 | 243 |
| 172 // * Resource unit granularity. | 244 // * Resource unit granularity. |
| 173 type KubernetesPod_Container_Resources_Unit int32 | 245 type KubernetesPod_Container_Resources_Unit int32 |
| 174 | 246 |
| 175 const ( | 247 const ( |
| 176 KubernetesPod_Container_Resources_BYTE KubernetesPod_Container_Resources
_Unit = 0 | 248 KubernetesPod_Container_Resources_BYTE KubernetesPod_Container_Resources
_Unit = 0 |
| 177 // * 1000 | 249 // * 1000 |
| 178 KubernetesPod_Container_Resources_KILOBYTE KubernetesPod_Container_Resou
rces_Unit = 1 | 250 KubernetesPod_Container_Resources_KILOBYTE KubernetesPod_Container_Resou
rces_Unit = 1 |
| 179 // * 1000^2 | 251 // * 1000^2 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "GIBIBYTE": 9, | 300 "GIBIBYTE": 9, |
| 229 "TEBIBYTE": 10, | 301 "TEBIBYTE": 10, |
| 230 "PEBIBYTE": 11, | 302 "PEBIBYTE": 11, |
| 231 "EXBIBYTE": 12, | 303 "EXBIBYTE": 12, |
| 232 } | 304 } |
| 233 | 305 |
| 234 func (x KubernetesPod_Container_Resources_Unit) String() string { | 306 func (x KubernetesPod_Container_Resources_Unit) String() string { |
| 235 return proto.EnumName(KubernetesPod_Container_Resources_Unit_name, int32
(x)) | 307 return proto.EnumName(KubernetesPod_Container_Resources_Unit_name, int32
(x)) |
| 236 } | 308 } |
| 237 func (KubernetesPod_Container_Resources_Unit) EnumDescriptor() ([]byte, []int) { | 309 func (KubernetesPod_Container_Resources_Unit) EnumDescriptor() ([]byte, []int) { |
| 238 » return fileDescriptor1, []int{5, 0, 2, 0} | 310 » return fileDescriptor1, []int{6, 0, 2, 0} |
| 239 } | 311 } |
| 240 | 312 |
| 241 // * | 313 // * |
| 242 // Component represents a single deployable component. | 314 // Component represents a single deployable component. |
| 243 // | 315 // |
| 244 // Deployment tool projects are composed of Components. Each Component is | 316 // Deployment tool projects are composed of Components. Each Component is |
| 245 // defined in a project's components directory, and describes a deployment | 317 // defined in a project's components directory, and describes a deployment |
| 246 // Component that the project offers. | 318 // Component that the project offers. |
| 247 // | 319 // |
| 248 // Components are located under a Source's components directory, and are | 320 // Components are located under a Source's components directory, and are |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 } | 643 } |
| 572 | 644 |
| 573 func (m *BuildPath) GetPath() string { | 645 func (m *BuildPath) GetPath() string { |
| 574 if m != nil { | 646 if m != nil { |
| 575 return m.Path | 647 return m.Path |
| 576 } | 648 } |
| 577 return "" | 649 return "" |
| 578 } | 650 } |
| 579 | 651 |
| 580 // * | 652 // * |
| 653 // A Duration expression. |
| 654 // |
| 655 // This is preferred to google.protobuf.Duration since it is more easily |
| 656 // expressed by a human. |
| 657 type Duration struct { |
| 658 // * The duration value, taken in units of "unit". |
| 659 Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"` |
| 660 // * The unit for this duration value. |
| 661 Unit Duration_Unit `protobuf:"varint,2,opt,name=unit,enum=deploy.Duratio
n_Unit" json:"unit,omitempty"` |
| 662 // * Additional duration units to append. |
| 663 Plus []*Duration `protobuf:"bytes,3,rep,name=plus" json:"plus,omitempty"
` |
| 664 } |
| 665 |
| 666 func (m *Duration) Reset() { *m = Duration{} } |
| 667 func (m *Duration) String() string { return proto.CompactTextString(m
) } |
| 668 func (*Duration) ProtoMessage() {} |
| 669 func (*Duration) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2}
} |
| 670 |
| 671 func (m *Duration) GetValue() uint32 { |
| 672 if m != nil { |
| 673 return m.Value |
| 674 } |
| 675 return 0 |
| 676 } |
| 677 |
| 678 func (m *Duration) GetUnit() Duration_Unit { |
| 679 if m != nil { |
| 680 return m.Unit |
| 681 } |
| 682 return Duration_MILLISECONDS |
| 683 } |
| 684 |
| 685 func (m *Duration) GetPlus() []*Duration { |
| 686 if m != nil { |
| 687 return m.Plus |
| 688 } |
| 689 return nil |
| 690 } |
| 691 |
| 692 // * |
| 581 // Describes an AppEngine module. | 693 // Describes an AppEngine module. |
| 582 type AppEngineModule struct { | 694 type AppEngineModule struct { |
| 583 // * The name of the module. Leave blank for default module. | 695 // * The name of the module. Leave blank for default module. |
| 584 ModuleName string `protobuf:"bytes,1,opt,name=module_name,json=moduleNam
e" json:"module_name,omitempty"` | 696 ModuleName string `protobuf:"bytes,1,opt,name=module_name,json=moduleNam
e" json:"module_name,omitempty"` |
| 585 // * The module's runtime. | 697 // * The module's runtime. |
| 586 // | 698 // |
| 587 // Types that are valid to be assigned to Runtime: | 699 // Types that are valid to be assigned to Runtime: |
| 588 // *AppEngineModule_GoModule_ | 700 // *AppEngineModule_GoModule_ |
| 589 // *AppEngineModule_StaticModule_ | 701 // *AppEngineModule_StaticModule_ |
| 590 Runtime isAppEngineModule_Runtime `protobuf_oneof:"runtime"` | 702 Runtime isAppEngineModule_Runtime `protobuf_oneof:"runtime"` |
| 591 » // * | 703 » // Types that are valid to be assigned to Params: |
| 592 » // If set, this is a Managed VM AppEngine module, and these are addition
al | 704 » //» *AppEngineModule_Classic |
| 593 » // parameters. | 705 » //» *AppEngineModule_ManagedVm |
| 594 » ManagedVm *AppEngineModule_ManagedVmParams `protobuf:"bytes,10,opt,name=
managed_vm,json=managedVm" json:"managed_vm,omitempty"` | 706 » Params isAppEngineModule_Params `protobuf_oneof:"params"` |
| 595 // * Module handlers. | 707 // * Module handlers. |
| 596 Handlers *AppEngineModule_HandlerSet `protobuf:"bytes,20,opt,name=handle
rs" json:"handlers,omitempty"` | 708 Handlers *AppEngineModule_HandlerSet `protobuf:"bytes,20,opt,name=handle
rs" json:"handlers,omitempty"` |
| 597 // * Source-relative paths to HandlerSet protobufs to include. | 709 // * Source-relative paths to HandlerSet protobufs to include. |
| 598 HandlerPath []string `protobuf:"bytes,21,rep,name=handler_path,json=hand
lerPath" json:"handler_path,omitempty"` | 710 HandlerPath []string `protobuf:"bytes,21,rep,name=handler_path,json=hand
lerPath" json:"handler_path,omitempty"` |
| 599 // * | 711 // * |
| 600 // Module resources. | 712 // Module resources. |
| 601 // | 713 // |
| 602 // All resources defined by this module are automatically configured to
be | 714 // All resources defined by this module are automatically configured to
be |
| 603 // handled by this module without explicit "handle_*" directives. | 715 // handled by this module without explicit "handle_*" directives. |
| 604 Resources *AppEngineResources `protobuf:"bytes,22,opt,name=resources" js
on:"resources,omitempty"` | 716 Resources *AppEngineResources `protobuf:"bytes,22,opt,name=resources" js
on:"resources,omitempty"` |
| (...skipping 15 matching lines...) Expand all Loading... |
| 620 // ininto an AppEngineResources protobuf. | 732 // ininto an AppEngineResources protobuf. |
| 621 // | 733 // |
| 622 // If this is not empty, an "index.yaml" file will be loaded from this p
ath | 734 // If this is not empty, an "index.yaml" file will be loaded from this p
ath |
| 623 // and appended to any other defined indexes. | 735 // and appended to any other defined indexes. |
| 624 IndexYamlPath string `protobuf:"bytes,24,opt,name=index_yaml_path,json=i
ndexYamlPath" json:"index_yaml_path,omitempty"` | 736 IndexYamlPath string `protobuf:"bytes,24,opt,name=index_yaml_path,json=i
ndexYamlPath" json:"index_yaml_path,omitempty"` |
| 625 } | 737 } |
| 626 | 738 |
| 627 func (m *AppEngineModule) Reset() { *m = AppEngineModule{} } | 739 func (m *AppEngineModule) Reset() { *m = AppEngineModule{} } |
| 628 func (m *AppEngineModule) String() string { return proto.CompactTextS
tring(m) } | 740 func (m *AppEngineModule) String() string { return proto.CompactTextS
tring(m) } |
| 629 func (*AppEngineModule) ProtoMessage() {} | 741 func (*AppEngineModule) ProtoMessage() {} |
| 630 func (*AppEngineModule) Descriptor() ([]byte, []int) { return fileDescriptor1, [
]int{2} } | 742 func (*AppEngineModule) Descriptor() ([]byte, []int) { return fileDescriptor1, [
]int{3} } |
| 631 | 743 |
| 632 type isAppEngineModule_Runtime interface { | 744 type isAppEngineModule_Runtime interface { |
| 633 isAppEngineModule_Runtime() | 745 isAppEngineModule_Runtime() |
| 634 } | 746 } |
| 747 type isAppEngineModule_Params interface { |
| 748 isAppEngineModule_Params() |
| 749 } |
| 635 | 750 |
| 636 type AppEngineModule_GoModule_ struct { | 751 type AppEngineModule_GoModule_ struct { |
| 637 GoModule *AppEngineModule_GoModule `protobuf:"bytes,2,opt,name=go_module
,json=goModule,oneof"` | 752 GoModule *AppEngineModule_GoModule `protobuf:"bytes,2,opt,name=go_module
,json=goModule,oneof"` |
| 638 } | 753 } |
| 639 type AppEngineModule_StaticModule_ struct { | 754 type AppEngineModule_StaticModule_ struct { |
| 640 StaticModule *AppEngineModule_StaticModule `protobuf:"bytes,3,opt,name=s
tatic_module,json=staticModule,oneof"` | 755 StaticModule *AppEngineModule_StaticModule `protobuf:"bytes,3,opt,name=s
tatic_module,json=staticModule,oneof"` |
| 641 } | 756 } |
| 757 type AppEngineModule_Classic struct { |
| 758 Classic *AppEngineModule_ClassicParams `protobuf:"bytes,10,opt,name=clas
sic,oneof"` |
| 759 } |
| 760 type AppEngineModule_ManagedVm struct { |
| 761 ManagedVm *AppEngineModule_ManagedVmParams `protobuf:"bytes,11,opt,name=
managed_vm,json=managedVm,oneof"` |
| 762 } |
| 642 | 763 |
| 643 func (*AppEngineModule_GoModule_) isAppEngineModule_Runtime() {} | 764 func (*AppEngineModule_GoModule_) isAppEngineModule_Runtime() {} |
| 644 func (*AppEngineModule_StaticModule_) isAppEngineModule_Runtime() {} | 765 func (*AppEngineModule_StaticModule_) isAppEngineModule_Runtime() {} |
| 766 func (*AppEngineModule_Classic) isAppEngineModule_Params() {} |
| 767 func (*AppEngineModule_ManagedVm) isAppEngineModule_Params() {} |
| 645 | 768 |
| 646 func (m *AppEngineModule) GetRuntime() isAppEngineModule_Runtime { | 769 func (m *AppEngineModule) GetRuntime() isAppEngineModule_Runtime { |
| 647 if m != nil { | 770 if m != nil { |
| 648 return m.Runtime | 771 return m.Runtime |
| 649 } | 772 } |
| 650 return nil | 773 return nil |
| 651 } | 774 } |
| 775 func (m *AppEngineModule) GetParams() isAppEngineModule_Params { |
| 776 if m != nil { |
| 777 return m.Params |
| 778 } |
| 779 return nil |
| 780 } |
| 652 | 781 |
| 653 func (m *AppEngineModule) GetModuleName() string { | 782 func (m *AppEngineModule) GetModuleName() string { |
| 654 if m != nil { | 783 if m != nil { |
| 655 return m.ModuleName | 784 return m.ModuleName |
| 656 } | 785 } |
| 657 return "" | 786 return "" |
| 658 } | 787 } |
| 659 | 788 |
| 660 func (m *AppEngineModule) GetGoModule() *AppEngineModule_GoModule { | 789 func (m *AppEngineModule) GetGoModule() *AppEngineModule_GoModule { |
| 661 if x, ok := m.GetRuntime().(*AppEngineModule_GoModule_); ok { | 790 if x, ok := m.GetRuntime().(*AppEngineModule_GoModule_); ok { |
| 662 return x.GoModule | 791 return x.GoModule |
| 663 } | 792 } |
| 664 return nil | 793 return nil |
| 665 } | 794 } |
| 666 | 795 |
| 667 func (m *AppEngineModule) GetStaticModule() *AppEngineModule_StaticModule { | 796 func (m *AppEngineModule) GetStaticModule() *AppEngineModule_StaticModule { |
| 668 if x, ok := m.GetRuntime().(*AppEngineModule_StaticModule_); ok { | 797 if x, ok := m.GetRuntime().(*AppEngineModule_StaticModule_); ok { |
| 669 return x.StaticModule | 798 return x.StaticModule |
| 670 } | 799 } |
| 671 return nil | 800 return nil |
| 672 } | 801 } |
| 673 | 802 |
| 803 func (m *AppEngineModule) GetClassic() *AppEngineModule_ClassicParams { |
| 804 if x, ok := m.GetParams().(*AppEngineModule_Classic); ok { |
| 805 return x.Classic |
| 806 } |
| 807 return nil |
| 808 } |
| 809 |
| 674 func (m *AppEngineModule) GetManagedVm() *AppEngineModule_ManagedVmParams { | 810 func (m *AppEngineModule) GetManagedVm() *AppEngineModule_ManagedVmParams { |
| 675 » if m != nil { | 811 » if x, ok := m.GetParams().(*AppEngineModule_ManagedVm); ok { |
| 676 » » return m.ManagedVm | 812 » » return x.ManagedVm |
| 677 } | 813 } |
| 678 return nil | 814 return nil |
| 679 } | 815 } |
| 680 | 816 |
| 681 func (m *AppEngineModule) GetHandlers() *AppEngineModule_HandlerSet { | 817 func (m *AppEngineModule) GetHandlers() *AppEngineModule_HandlerSet { |
| 682 if m != nil { | 818 if m != nil { |
| 683 return m.Handlers | 819 return m.Handlers |
| 684 } | 820 } |
| 685 return nil | 821 return nil |
| 686 } | 822 } |
| (...skipping 24 matching lines...) Expand all Loading... |
| 711 return m.IndexYamlPath | 847 return m.IndexYamlPath |
| 712 } | 848 } |
| 713 return "" | 849 return "" |
| 714 } | 850 } |
| 715 | 851 |
| 716 // XXX_OneofFuncs is for the internal use of the proto package. | 852 // XXX_OneofFuncs is for the internal use of the proto package. |
| 717 func (*AppEngineModule) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffe
r) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error),
func(msg proto.Message) (n int), []interface{}) { | 853 func (*AppEngineModule) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffe
r) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error),
func(msg proto.Message) (n int), []interface{}) { |
| 718 return _AppEngineModule_OneofMarshaler, _AppEngineModule_OneofUnmarshale
r, _AppEngineModule_OneofSizer, []interface{}{ | 854 return _AppEngineModule_OneofMarshaler, _AppEngineModule_OneofUnmarshale
r, _AppEngineModule_OneofSizer, []interface{}{ |
| 719 (*AppEngineModule_GoModule_)(nil), | 855 (*AppEngineModule_GoModule_)(nil), |
| 720 (*AppEngineModule_StaticModule_)(nil), | 856 (*AppEngineModule_StaticModule_)(nil), |
| 857 (*AppEngineModule_Classic)(nil), |
| 858 (*AppEngineModule_ManagedVm)(nil), |
| 721 } | 859 } |
| 722 } | 860 } |
| 723 | 861 |
| 724 func _AppEngineModule_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { | 862 func _AppEngineModule_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { |
| 725 m := msg.(*AppEngineModule) | 863 m := msg.(*AppEngineModule) |
| 726 // runtime | 864 // runtime |
| 727 switch x := m.Runtime.(type) { | 865 switch x := m.Runtime.(type) { |
| 728 case *AppEngineModule_GoModule_: | 866 case *AppEngineModule_GoModule_: |
| 729 b.EncodeVarint(2<<3 | proto.WireBytes) | 867 b.EncodeVarint(2<<3 | proto.WireBytes) |
| 730 if err := b.EncodeMessage(x.GoModule); err != nil { | 868 if err := b.EncodeMessage(x.GoModule); err != nil { |
| 731 return err | 869 return err |
| 732 } | 870 } |
| 733 case *AppEngineModule_StaticModule_: | 871 case *AppEngineModule_StaticModule_: |
| 734 b.EncodeVarint(3<<3 | proto.WireBytes) | 872 b.EncodeVarint(3<<3 | proto.WireBytes) |
| 735 if err := b.EncodeMessage(x.StaticModule); err != nil { | 873 if err := b.EncodeMessage(x.StaticModule); err != nil { |
| 736 return err | 874 return err |
| 737 } | 875 } |
| 738 case nil: | 876 case nil: |
| 739 default: | 877 default: |
| 740 return fmt.Errorf("AppEngineModule.Runtime has unexpected type %
T", x) | 878 return fmt.Errorf("AppEngineModule.Runtime has unexpected type %
T", x) |
| 741 } | 879 } |
| 880 // params |
| 881 switch x := m.Params.(type) { |
| 882 case *AppEngineModule_Classic: |
| 883 b.EncodeVarint(10<<3 | proto.WireBytes) |
| 884 if err := b.EncodeMessage(x.Classic); err != nil { |
| 885 return err |
| 886 } |
| 887 case *AppEngineModule_ManagedVm: |
| 888 b.EncodeVarint(11<<3 | proto.WireBytes) |
| 889 if err := b.EncodeMessage(x.ManagedVm); err != nil { |
| 890 return err |
| 891 } |
| 892 case nil: |
| 893 default: |
| 894 return fmt.Errorf("AppEngineModule.Params has unexpected type %T
", x) |
| 895 } |
| 742 return nil | 896 return nil |
| 743 } | 897 } |
| 744 | 898 |
| 745 func _AppEngineModule_OneofUnmarshaler(msg proto.Message, tag, wire int, b *prot
o.Buffer) (bool, error) { | 899 func _AppEngineModule_OneofUnmarshaler(msg proto.Message, tag, wire int, b *prot
o.Buffer) (bool, error) { |
| 746 m := msg.(*AppEngineModule) | 900 m := msg.(*AppEngineModule) |
| 747 switch tag { | 901 switch tag { |
| 748 case 2: // runtime.go_module | 902 case 2: // runtime.go_module |
| 749 if wire != proto.WireBytes { | 903 if wire != proto.WireBytes { |
| 750 return true, proto.ErrInternalBadWireType | 904 return true, proto.ErrInternalBadWireType |
| 751 } | 905 } |
| 752 msg := new(AppEngineModule_GoModule) | 906 msg := new(AppEngineModule_GoModule) |
| 753 err := b.DecodeMessage(msg) | 907 err := b.DecodeMessage(msg) |
| 754 m.Runtime = &AppEngineModule_GoModule_{msg} | 908 m.Runtime = &AppEngineModule_GoModule_{msg} |
| 755 return true, err | 909 return true, err |
| 756 case 3: // runtime.static_module | 910 case 3: // runtime.static_module |
| 757 if wire != proto.WireBytes { | 911 if wire != proto.WireBytes { |
| 758 return true, proto.ErrInternalBadWireType | 912 return true, proto.ErrInternalBadWireType |
| 759 } | 913 } |
| 760 msg := new(AppEngineModule_StaticModule) | 914 msg := new(AppEngineModule_StaticModule) |
| 761 err := b.DecodeMessage(msg) | 915 err := b.DecodeMessage(msg) |
| 762 m.Runtime = &AppEngineModule_StaticModule_{msg} | 916 m.Runtime = &AppEngineModule_StaticModule_{msg} |
| 763 return true, err | 917 return true, err |
| 918 case 10: // params.classic |
| 919 if wire != proto.WireBytes { |
| 920 return true, proto.ErrInternalBadWireType |
| 921 } |
| 922 msg := new(AppEngineModule_ClassicParams) |
| 923 err := b.DecodeMessage(msg) |
| 924 m.Params = &AppEngineModule_Classic{msg} |
| 925 return true, err |
| 926 case 11: // params.managed_vm |
| 927 if wire != proto.WireBytes { |
| 928 return true, proto.ErrInternalBadWireType |
| 929 } |
| 930 msg := new(AppEngineModule_ManagedVmParams) |
| 931 err := b.DecodeMessage(msg) |
| 932 m.Params = &AppEngineModule_ManagedVm{msg} |
| 933 return true, err |
| 764 default: | 934 default: |
| 765 return false, nil | 935 return false, nil |
| 766 } | 936 } |
| 767 } | 937 } |
| 768 | 938 |
| 769 func _AppEngineModule_OneofSizer(msg proto.Message) (n int) { | 939 func _AppEngineModule_OneofSizer(msg proto.Message) (n int) { |
| 770 m := msg.(*AppEngineModule) | 940 m := msg.(*AppEngineModule) |
| 771 // runtime | 941 // runtime |
| 772 switch x := m.Runtime.(type) { | 942 switch x := m.Runtime.(type) { |
| 773 case *AppEngineModule_GoModule_: | 943 case *AppEngineModule_GoModule_: |
| 774 s := proto.Size(x.GoModule) | 944 s := proto.Size(x.GoModule) |
| 775 n += proto.SizeVarint(2<<3 | proto.WireBytes) | 945 n += proto.SizeVarint(2<<3 | proto.WireBytes) |
| 776 n += proto.SizeVarint(uint64(s)) | 946 n += proto.SizeVarint(uint64(s)) |
| 777 n += s | 947 n += s |
| 778 case *AppEngineModule_StaticModule_: | 948 case *AppEngineModule_StaticModule_: |
| 779 s := proto.Size(x.StaticModule) | 949 s := proto.Size(x.StaticModule) |
| 780 n += proto.SizeVarint(3<<3 | proto.WireBytes) | 950 n += proto.SizeVarint(3<<3 | proto.WireBytes) |
| 781 n += proto.SizeVarint(uint64(s)) | 951 n += proto.SizeVarint(uint64(s)) |
| 782 n += s | 952 n += s |
| 783 case nil: | 953 case nil: |
| 784 default: | 954 default: |
| 785 panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) | 955 panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) |
| 786 } | 956 } |
| 957 // params |
| 958 switch x := m.Params.(type) { |
| 959 case *AppEngineModule_Classic: |
| 960 s := proto.Size(x.Classic) |
| 961 n += proto.SizeVarint(10<<3 | proto.WireBytes) |
| 962 n += proto.SizeVarint(uint64(s)) |
| 963 n += s |
| 964 case *AppEngineModule_ManagedVm: |
| 965 s := proto.Size(x.ManagedVm) |
| 966 n += proto.SizeVarint(11<<3 | proto.WireBytes) |
| 967 n += proto.SizeVarint(uint64(s)) |
| 968 n += s |
| 969 case nil: |
| 970 default: |
| 971 panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) |
| 972 } |
| 787 return n | 973 return n |
| 788 } | 974 } |
| 789 | 975 |
| 790 // * | 976 // * |
| 791 // A Go AppEngine module. | 977 // A Go AppEngine module. |
| 792 // | 978 // |
| 793 // The entry point must be declared here. | 979 // The entry point must be declared here. |
| 794 type AppEngineModule_GoModule struct { | 980 type AppEngineModule_GoModule struct { |
| 795 // * The Go package path of the module's entry package. | 981 // * The Go package path of the module's entry package. |
| 796 EntryPackage string `protobuf:"bytes,1,opt,name=entry_package,json=entry
Package" json:"entry_package,omitempty"` | 982 EntryPackage string `protobuf:"bytes,1,opt,name=entry_package,json=entry
Package" json:"entry_package,omitempty"` |
| 797 } | 983 } |
| 798 | 984 |
| 799 func (m *AppEngineModule_GoModule) Reset() { *m = AppEngineMo
dule_GoModule{} } | 985 func (m *AppEngineModule_GoModule) Reset() { *m = AppEngineMo
dule_GoModule{} } |
| 800 func (m *AppEngineModule_GoModule) String() string { return proto.Com
pactTextString(m) } | 986 func (m *AppEngineModule_GoModule) String() string { return proto.Com
pactTextString(m) } |
| 801 func (*AppEngineModule_GoModule) ProtoMessage() {} | 987 func (*AppEngineModule_GoModule) ProtoMessage() {} |
| 802 func (*AppEngineModule_GoModule) Descriptor() ([]byte, []int) { return fileDescr
iptor1, []int{2, 0} } | 988 func (*AppEngineModule_GoModule) Descriptor() ([]byte, []int) { return fileDescr
iptor1, []int{3, 0} } |
| 803 | 989 |
| 804 func (m *AppEngineModule_GoModule) GetEntryPackage() string { | 990 func (m *AppEngineModule_GoModule) GetEntryPackage() string { |
| 805 if m != nil { | 991 if m != nil { |
| 806 return m.EntryPackage | 992 return m.EntryPackage |
| 807 } | 993 } |
| 808 return "" | 994 return "" |
| 809 } | 995 } |
| 810 | 996 |
| 811 // * | 997 // * |
| 812 // A module that is really hosting static content via handlers and uploads. | 998 // A module that is really hosting static content via handlers and uploads. |
| 813 type AppEngineModule_StaticModule struct { | 999 type AppEngineModule_StaticModule struct { |
| 814 } | 1000 } |
| 815 | 1001 |
| 816 func (m *AppEngineModule_StaticModule) Reset() { *m = AppEngi
neModule_StaticModule{} } | 1002 func (m *AppEngineModule_StaticModule) Reset() { *m = AppEngi
neModule_StaticModule{} } |
| 817 func (m *AppEngineModule_StaticModule) String() string { return proto
.CompactTextString(m) } | 1003 func (m *AppEngineModule_StaticModule) String() string { return proto
.CompactTextString(m) } |
| 818 func (*AppEngineModule_StaticModule) ProtoMessage() {} | 1004 func (*AppEngineModule_StaticModule) ProtoMessage() {} |
| 819 func (*AppEngineModule_StaticModule) Descriptor() ([]byte, []int) { return fileD
escriptor1, []int{2, 1} } | 1005 func (*AppEngineModule_StaticModule) Descriptor() ([]byte, []int) { return fileD
escriptor1, []int{3, 1} } |
| 1006 |
| 1007 // * Parameters for a classic AppEngine instance. |
| 1008 type AppEngineModule_ClassicParams struct { |
| 1009 InstanceClass AppEngineModule_ClassicParams_InstanceClass `protobuf:"var
int,1,opt,name=instance_class,json=instanceClass,enum=deploy.AppEngineModule_Cla
ssicParams_InstanceClass" json:"instance_class,omitempty"` |
| 1010 // * Instance scaling type. |
| 1011 // |
| 1012 // Types that are valid to be assigned to Scaling: |
| 1013 // *AppEngineModule_ClassicParams_AutomaticScaling_ |
| 1014 // *AppEngineModule_ClassicParams_BasicScaling_ |
| 1015 // *AppEngineModule_ClassicParams_ManualScaling_ |
| 1016 Scaling isAppEngineModule_ClassicParams_Scaling `protobuf_oneof:"scaling
"` |
| 1017 } |
| 1018 |
| 1019 func (m *AppEngineModule_ClassicParams) Reset() { *m = AppEngineModule_C
lassicParams{} } |
| 1020 func (m *AppEngineModule_ClassicParams) String() string { return proto.CompactTe
xtString(m) } |
| 1021 func (*AppEngineModule_ClassicParams) ProtoMessage() {} |
| 1022 func (*AppEngineModule_ClassicParams) Descriptor() ([]byte, []int) { |
| 1023 return fileDescriptor1, []int{3, 2} |
| 1024 } |
| 1025 |
| 1026 type isAppEngineModule_ClassicParams_Scaling interface { |
| 1027 isAppEngineModule_ClassicParams_Scaling() |
| 1028 } |
| 1029 |
| 1030 type AppEngineModule_ClassicParams_AutomaticScaling_ struct { |
| 1031 AutomaticScaling *AppEngineModule_ClassicParams_AutomaticScaling `protob
uf:"bytes,10,opt,name=automatic_scaling,json=automaticScaling,oneof"` |
| 1032 } |
| 1033 type AppEngineModule_ClassicParams_BasicScaling_ struct { |
| 1034 BasicScaling *AppEngineModule_ClassicParams_BasicScaling `protobuf:"byte
s,11,opt,name=basic_scaling,json=basicScaling,oneof"` |
| 1035 } |
| 1036 type AppEngineModule_ClassicParams_ManualScaling_ struct { |
| 1037 ManualScaling *AppEngineModule_ClassicParams_ManualScaling `protobuf:"by
tes,12,opt,name=manual_scaling,json=manualScaling,oneof"` |
| 1038 } |
| 1039 |
| 1040 func (*AppEngineModule_ClassicParams_AutomaticScaling_) isAppEngineModule_Classi
cParams_Scaling() {} |
| 1041 func (*AppEngineModule_ClassicParams_BasicScaling_) isAppEngineModule_ClassicPar
ams_Scaling() {} |
| 1042 func (*AppEngineModule_ClassicParams_ManualScaling_) isAppEngineModule_ClassicPa
rams_Scaling() {} |
| 1043 |
| 1044 func (m *AppEngineModule_ClassicParams) GetScaling() isAppEngineModule_ClassicPa
rams_Scaling { |
| 1045 if m != nil { |
| 1046 return m.Scaling |
| 1047 } |
| 1048 return nil |
| 1049 } |
| 1050 |
| 1051 func (m *AppEngineModule_ClassicParams) GetInstanceClass() AppEngineModule_Class
icParams_InstanceClass { |
| 1052 if m != nil { |
| 1053 return m.InstanceClass |
| 1054 } |
| 1055 return AppEngineModule_ClassicParams_IC_DEFAULT |
| 1056 } |
| 1057 |
| 1058 func (m *AppEngineModule_ClassicParams) GetAutomaticScaling() *AppEngineModule_C
lassicParams_AutomaticScaling { |
| 1059 if x, ok := m.GetScaling().(*AppEngineModule_ClassicParams_AutomaticScal
ing_); ok { |
| 1060 return x.AutomaticScaling |
| 1061 } |
| 1062 return nil |
| 1063 } |
| 1064 |
| 1065 func (m *AppEngineModule_ClassicParams) GetBasicScaling() *AppEngineModule_Class
icParams_BasicScaling { |
| 1066 if x, ok := m.GetScaling().(*AppEngineModule_ClassicParams_BasicScaling_
); ok { |
| 1067 return x.BasicScaling |
| 1068 } |
| 1069 return nil |
| 1070 } |
| 1071 |
| 1072 func (m *AppEngineModule_ClassicParams) GetManualScaling() *AppEngineModule_Clas
sicParams_ManualScaling { |
| 1073 if x, ok := m.GetScaling().(*AppEngineModule_ClassicParams_ManualScaling
_); ok { |
| 1074 return x.ManualScaling |
| 1075 } |
| 1076 return nil |
| 1077 } |
| 1078 |
| 1079 // XXX_OneofFuncs is for the internal use of the proto package. |
| 1080 func (*AppEngineModule_ClassicParams) XXX_OneofFuncs() (func(msg proto.Message,
b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer)
(bool, error), func(msg proto.Message) (n int), []interface{}) { |
| 1081 return _AppEngineModule_ClassicParams_OneofMarshaler, _AppEngineModule_C
lassicParams_OneofUnmarshaler, _AppEngineModule_ClassicParams_OneofSizer, []inte
rface{}{ |
| 1082 (*AppEngineModule_ClassicParams_AutomaticScaling_)(nil), |
| 1083 (*AppEngineModule_ClassicParams_BasicScaling_)(nil), |
| 1084 (*AppEngineModule_ClassicParams_ManualScaling_)(nil), |
| 1085 } |
| 1086 } |
| 1087 |
| 1088 func _AppEngineModule_ClassicParams_OneofMarshaler(msg proto.Message, b *proto.B
uffer) error { |
| 1089 m := msg.(*AppEngineModule_ClassicParams) |
| 1090 // scaling |
| 1091 switch x := m.Scaling.(type) { |
| 1092 case *AppEngineModule_ClassicParams_AutomaticScaling_: |
| 1093 b.EncodeVarint(10<<3 | proto.WireBytes) |
| 1094 if err := b.EncodeMessage(x.AutomaticScaling); err != nil { |
| 1095 return err |
| 1096 } |
| 1097 case *AppEngineModule_ClassicParams_BasicScaling_: |
| 1098 b.EncodeVarint(11<<3 | proto.WireBytes) |
| 1099 if err := b.EncodeMessage(x.BasicScaling); err != nil { |
| 1100 return err |
| 1101 } |
| 1102 case *AppEngineModule_ClassicParams_ManualScaling_: |
| 1103 b.EncodeVarint(12<<3 | proto.WireBytes) |
| 1104 if err := b.EncodeMessage(x.ManualScaling); err != nil { |
| 1105 return err |
| 1106 } |
| 1107 case nil: |
| 1108 default: |
| 1109 return fmt.Errorf("AppEngineModule_ClassicParams.Scaling has une
xpected type %T", x) |
| 1110 } |
| 1111 return nil |
| 1112 } |
| 1113 |
| 1114 func _AppEngineModule_ClassicParams_OneofUnmarshaler(msg proto.Message, tag, wir
e int, b *proto.Buffer) (bool, error) { |
| 1115 m := msg.(*AppEngineModule_ClassicParams) |
| 1116 switch tag { |
| 1117 case 10: // scaling.automatic_scaling |
| 1118 if wire != proto.WireBytes { |
| 1119 return true, proto.ErrInternalBadWireType |
| 1120 } |
| 1121 msg := new(AppEngineModule_ClassicParams_AutomaticScaling) |
| 1122 err := b.DecodeMessage(msg) |
| 1123 m.Scaling = &AppEngineModule_ClassicParams_AutomaticScaling_{msg
} |
| 1124 return true, err |
| 1125 case 11: // scaling.basic_scaling |
| 1126 if wire != proto.WireBytes { |
| 1127 return true, proto.ErrInternalBadWireType |
| 1128 } |
| 1129 msg := new(AppEngineModule_ClassicParams_BasicScaling) |
| 1130 err := b.DecodeMessage(msg) |
| 1131 m.Scaling = &AppEngineModule_ClassicParams_BasicScaling_{msg} |
| 1132 return true, err |
| 1133 case 12: // scaling.manual_scaling |
| 1134 if wire != proto.WireBytes { |
| 1135 return true, proto.ErrInternalBadWireType |
| 1136 } |
| 1137 msg := new(AppEngineModule_ClassicParams_ManualScaling) |
| 1138 err := b.DecodeMessage(msg) |
| 1139 m.Scaling = &AppEngineModule_ClassicParams_ManualScaling_{msg} |
| 1140 return true, err |
| 1141 default: |
| 1142 return false, nil |
| 1143 } |
| 1144 } |
| 1145 |
| 1146 func _AppEngineModule_ClassicParams_OneofSizer(msg proto.Message) (n int) { |
| 1147 m := msg.(*AppEngineModule_ClassicParams) |
| 1148 // scaling |
| 1149 switch x := m.Scaling.(type) { |
| 1150 case *AppEngineModule_ClassicParams_AutomaticScaling_: |
| 1151 s := proto.Size(x.AutomaticScaling) |
| 1152 n += proto.SizeVarint(10<<3 | proto.WireBytes) |
| 1153 n += proto.SizeVarint(uint64(s)) |
| 1154 n += s |
| 1155 case *AppEngineModule_ClassicParams_BasicScaling_: |
| 1156 s := proto.Size(x.BasicScaling) |
| 1157 n += proto.SizeVarint(11<<3 | proto.WireBytes) |
| 1158 n += proto.SizeVarint(uint64(s)) |
| 1159 n += s |
| 1160 case *AppEngineModule_ClassicParams_ManualScaling_: |
| 1161 s := proto.Size(x.ManualScaling) |
| 1162 n += proto.SizeVarint(12<<3 | proto.WireBytes) |
| 1163 n += proto.SizeVarint(uint64(s)) |
| 1164 n += s |
| 1165 case nil: |
| 1166 default: |
| 1167 panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) |
| 1168 } |
| 1169 return n |
| 1170 } |
| 1171 |
| 1172 // * Describes automatic scaling parameters. |
| 1173 type AppEngineModule_ClassicParams_AutomaticScaling struct { |
| 1174 // * Minimum number of idle instances. |
| 1175 MinIdleInstances uint32 `protobuf:"varint,1,opt,name=min_idle_instances,
json=minIdleInstances" json:"min_idle_instances,omitempty"` |
| 1176 // * Maximum number of idle instances. 0 is automatic (default). |
| 1177 MaxIdleInstances uint32 `protobuf:"varint,2,opt,name=max_idle_instances,
json=maxIdleInstances" json:"max_idle_instances,omitempty"` |
| 1178 // * Minimum pending latency. |
| 1179 MinPendingLatency *Duration `protobuf:"bytes,3,opt,name=min_pending_late
ncy,json=minPendingLatency" json:"min_pending_latency,omitempty"` |
| 1180 // * Maximum pending latency. 0 is automatic (default). |
| 1181 MaxPendingLatency *Duration `protobuf:"bytes,4,opt,name=max_pending_late
ncy,json=maxPendingLatency" json:"max_pending_latency,omitempty"` |
| 1182 // * Number of concurrent requests before respawning a new instance. |
| 1183 MaxConcurrentRequests uint32 `protobuf:"varint,5,opt,name=max_concurrent
_requests,json=maxConcurrentRequests" json:"max_concurrent_requests,omitempty"` |
| 1184 } |
| 1185 |
| 1186 func (m *AppEngineModule_ClassicParams_AutomaticScaling) Reset() { |
| 1187 *m = AppEngineModule_ClassicParams_AutomaticScaling{} |
| 1188 } |
| 1189 func (m *AppEngineModule_ClassicParams_AutomaticScaling) String() string { |
| 1190 return proto.CompactTextString(m) |
| 1191 } |
| 1192 func (*AppEngineModule_ClassicParams_AutomaticScaling) ProtoMessage() {} |
| 1193 func (*AppEngineModule_ClassicParams_AutomaticScaling) Descriptor() ([]byte, []i
nt) { |
| 1194 return fileDescriptor1, []int{3, 2, 0} |
| 1195 } |
| 1196 |
| 1197 func (m *AppEngineModule_ClassicParams_AutomaticScaling) GetMinIdleInstances() u
int32 { |
| 1198 if m != nil { |
| 1199 return m.MinIdleInstances |
| 1200 } |
| 1201 return 0 |
| 1202 } |
| 1203 |
| 1204 func (m *AppEngineModule_ClassicParams_AutomaticScaling) GetMaxIdleInstances() u
int32 { |
| 1205 if m != nil { |
| 1206 return m.MaxIdleInstances |
| 1207 } |
| 1208 return 0 |
| 1209 } |
| 1210 |
| 1211 func (m *AppEngineModule_ClassicParams_AutomaticScaling) GetMinPendingLatency()
*Duration { |
| 1212 if m != nil { |
| 1213 return m.MinPendingLatency |
| 1214 } |
| 1215 return nil |
| 1216 } |
| 1217 |
| 1218 func (m *AppEngineModule_ClassicParams_AutomaticScaling) GetMaxPendingLatency()
*Duration { |
| 1219 if m != nil { |
| 1220 return m.MaxPendingLatency |
| 1221 } |
| 1222 return nil |
| 1223 } |
| 1224 |
| 1225 func (m *AppEngineModule_ClassicParams_AutomaticScaling) GetMaxConcurrentRequest
s() uint32 { |
| 1226 if m != nil { |
| 1227 return m.MaxConcurrentRequests |
| 1228 } |
| 1229 return 0 |
| 1230 } |
| 1231 |
| 1232 // * Describes basic scaling parameters. |
| 1233 type AppEngineModule_ClassicParams_BasicScaling struct { |
| 1234 // Time after last request when instance will be shut down. |
| 1235 IdleTimeout *Duration `protobuf:"bytes,1,opt,name=idle_timeout,json=idle
Timeout" json:"idle_timeout,omitempty"` |
| 1236 // * |
| 1237 // The maximum number of instances to creaet for this version (required)
. |
| 1238 MaxInstances uint32 `protobuf:"varint,2,opt,name=max_instances,json=maxI
nstances" json:"max_instances,omitempty"` |
| 1239 } |
| 1240 |
| 1241 func (m *AppEngineModule_ClassicParams_BasicScaling) Reset() { |
| 1242 *m = AppEngineModule_ClassicParams_BasicScaling{} |
| 1243 } |
| 1244 func (m *AppEngineModule_ClassicParams_BasicScaling) String() string { |
| 1245 return proto.CompactTextString(m) |
| 1246 } |
| 1247 func (*AppEngineModule_ClassicParams_BasicScaling) ProtoMessage() {} |
| 1248 func (*AppEngineModule_ClassicParams_BasicScaling) Descriptor() ([]byte, []int)
{ |
| 1249 return fileDescriptor1, []int{3, 2, 1} |
| 1250 } |
| 1251 |
| 1252 func (m *AppEngineModule_ClassicParams_BasicScaling) GetIdleTimeout() *Duration
{ |
| 1253 if m != nil { |
| 1254 return m.IdleTimeout |
| 1255 } |
| 1256 return nil |
| 1257 } |
| 1258 |
| 1259 func (m *AppEngineModule_ClassicParams_BasicScaling) GetMaxInstances() uint32 { |
| 1260 if m != nil { |
| 1261 return m.MaxInstances |
| 1262 } |
| 1263 return 0 |
| 1264 } |
| 1265 |
| 1266 // * Describes manual scaling parameters. |
| 1267 type AppEngineModule_ClassicParams_ManualScaling struct { |
| 1268 // * The number of instances to assign. |
| 1269 Instances uint32 `protobuf:"varint,1,opt,name=instances" json:"instances
,omitempty"` |
| 1270 } |
| 1271 |
| 1272 func (m *AppEngineModule_ClassicParams_ManualScaling) Reset() { |
| 1273 *m = AppEngineModule_ClassicParams_ManualScaling{} |
| 1274 } |
| 1275 func (m *AppEngineModule_ClassicParams_ManualScaling) String() string { |
| 1276 return proto.CompactTextString(m) |
| 1277 } |
| 1278 func (*AppEngineModule_ClassicParams_ManualScaling) ProtoMessage() {} |
| 1279 func (*AppEngineModule_ClassicParams_ManualScaling) Descriptor() ([]byte, []int)
{ |
| 1280 return fileDescriptor1, []int{3, 2, 2} |
| 1281 } |
| 1282 |
| 1283 func (m *AppEngineModule_ClassicParams_ManualScaling) GetInstances() uint32 { |
| 1284 if m != nil { |
| 1285 return m.Instances |
| 1286 } |
| 1287 return 0 |
| 1288 } |
| 820 | 1289 |
| 821 // * Parameters for Managed VM | 1290 // * Parameters for Managed VM |
| 822 type AppEngineModule_ManagedVmParams struct { | 1291 type AppEngineModule_ManagedVmParams struct { |
| 823 // * Scopes are additional service account scopes to include. | 1292 // * Scopes are additional service account scopes to include. |
| 824 Scopes []string `protobuf:"bytes,1,rep,name=scopes" json:"scopes,omitemp
ty"` | 1293 Scopes []string `protobuf:"bytes,1,rep,name=scopes" json:"scopes,omitemp
ty"` |
| 825 } | 1294 } |
| 826 | 1295 |
| 827 func (m *AppEngineModule_ManagedVmParams) Reset() { *m = AppEngineModule
_ManagedVmParams{} } | 1296 func (m *AppEngineModule_ManagedVmParams) Reset() { *m = AppEngineModule
_ManagedVmParams{} } |
| 828 func (m *AppEngineModule_ManagedVmParams) String() string { return proto.Compact
TextString(m) } | 1297 func (m *AppEngineModule_ManagedVmParams) String() string { return proto.Compact
TextString(m) } |
| 829 func (*AppEngineModule_ManagedVmParams) ProtoMessage() {} | 1298 func (*AppEngineModule_ManagedVmParams) ProtoMessage() {} |
| 830 func (*AppEngineModule_ManagedVmParams) Descriptor() ([]byte, []int) { | 1299 func (*AppEngineModule_ManagedVmParams) Descriptor() ([]byte, []int) { |
| 831 » return fileDescriptor1, []int{2, 2} | 1300 » return fileDescriptor1, []int{3, 3} |
| 832 } | 1301 } |
| 833 | 1302 |
| 834 func (m *AppEngineModule_ManagedVmParams) GetScopes() []string { | 1303 func (m *AppEngineModule_ManagedVmParams) GetScopes() []string { |
| 835 if m != nil { | 1304 if m != nil { |
| 836 return m.Scopes | 1305 return m.Scopes |
| 837 } | 1306 } |
| 838 return nil | 1307 return nil |
| 839 } | 1308 } |
| 840 | 1309 |
| 841 // * Handler is the set of handlers. | 1310 // * Handler is the set of handlers. |
| 842 type AppEngineModule_Handler struct { | 1311 type AppEngineModule_Handler struct { |
| 843 // * The handler URL / regexp. | 1312 // * The handler URL / regexp. |
| 844 Url string `protobuf:"bytes,1,opt,name=
url" json:"url,omitempty"` | 1313 Url string `protobuf:"bytes,1,opt,name=
url" json:"url,omitempty"` |
| 845 Login AppEngineModule_Handler_LoginOption `protobuf:"varint,2,opt,name
=login,enum=deploy.AppEngineModule_Handler_LoginOption" json:"login,omitempty"` | 1314 Login AppEngineModule_Handler_LoginOption `protobuf:"varint,2,opt,name
=login,enum=deploy.AppEngineModule_Handler_LoginOption" json:"login,omitempty"` |
| 846 Secure AppEngineModule_Handler_SecureOption `protobuf:"varint,3,opt,name
=secure,enum=deploy.AppEngineModule_Handler_SecureOption" json:"secure,omitempty
"` | 1315 Secure AppEngineModule_Handler_SecureOption `protobuf:"varint,3,opt,name
=secure,enum=deploy.AppEngineModule_Handler_SecureOption" json:"secure,omitempty
"` |
| 847 // Types that are valid to be assigned to Content: | 1316 // Types that are valid to be assigned to Content: |
| 848 // *AppEngineModule_Handler_Script | 1317 // *AppEngineModule_Handler_Script |
| 849 // *AppEngineModule_Handler_StaticFiles_ | 1318 // *AppEngineModule_Handler_StaticFiles_ |
| 850 // *AppEngineModule_Handler_StaticDir | 1319 // *AppEngineModule_Handler_StaticDir |
| 851 // *AppEngineModule_Handler_StaticBuildDir | 1320 // *AppEngineModule_Handler_StaticBuildDir |
| 852 Content isAppEngineModule_Handler_Content `protobuf_oneof:"content"` | 1321 Content isAppEngineModule_Handler_Content `protobuf_oneof:"content"` |
| 853 } | 1322 } |
| 854 | 1323 |
| 855 func (m *AppEngineModule_Handler) Reset() { *m = AppEngineMod
ule_Handler{} } | 1324 func (m *AppEngineModule_Handler) Reset() { *m = AppEngineMod
ule_Handler{} } |
| 856 func (m *AppEngineModule_Handler) String() string { return proto.Comp
actTextString(m) } | 1325 func (m *AppEngineModule_Handler) String() string { return proto.Comp
actTextString(m) } |
| 857 func (*AppEngineModule_Handler) ProtoMessage() {} | 1326 func (*AppEngineModule_Handler) ProtoMessage() {} |
| 858 func (*AppEngineModule_Handler) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{2, 3} } | 1327 func (*AppEngineModule_Handler) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{3, 4} } |
| 859 | 1328 |
| 860 type isAppEngineModule_Handler_Content interface { | 1329 type isAppEngineModule_Handler_Content interface { |
| 861 isAppEngineModule_Handler_Content() | 1330 isAppEngineModule_Handler_Content() |
| 862 } | 1331 } |
| 863 | 1332 |
| 864 type AppEngineModule_Handler_Script struct { | 1333 type AppEngineModule_Handler_Script struct { |
| 865 Script string `protobuf:"bytes,4,opt,name=script,oneof"` | 1334 Script string `protobuf:"bytes,4,opt,name=script,oneof"` |
| 866 } | 1335 } |
| 867 type AppEngineModule_Handler_StaticFiles_ struct { | 1336 type AppEngineModule_Handler_StaticFiles_ struct { |
| 868 StaticFiles *AppEngineModule_Handler_StaticFiles `protobuf:"bytes,5,opt,
name=static_files,json=staticFiles,oneof"` | 1337 StaticFiles *AppEngineModule_Handler_StaticFiles `protobuf:"bytes,5,opt,
name=static_files,json=staticFiles,oneof"` |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1055 // * | 1524 // * |
| 1056 // URL to file mapping substitution regexp. This should not include the | 1525 // URL to file mapping substitution regexp. This should not include the |
| 1057 // "base_dir" component. | 1526 // "base_dir" component. |
| 1058 UrlMap string `protobuf:"bytes,4,opt,name=url_map,json=urlMap" json:"url
_map,omitempty"` | 1527 UrlMap string `protobuf:"bytes,4,opt,name=url_map,json=urlMap" json:"url
_map,omitempty"` |
| 1059 } | 1528 } |
| 1060 | 1529 |
| 1061 func (m *AppEngineModule_Handler_StaticFiles) Reset() { *m = AppEngineMo
dule_Handler_StaticFiles{} } | 1530 func (m *AppEngineModule_Handler_StaticFiles) Reset() { *m = AppEngineMo
dule_Handler_StaticFiles{} } |
| 1062 func (m *AppEngineModule_Handler_StaticFiles) String() string { return proto.Com
pactTextString(m) } | 1531 func (m *AppEngineModule_Handler_StaticFiles) String() string { return proto.Com
pactTextString(m) } |
| 1063 func (*AppEngineModule_Handler_StaticFiles) ProtoMessage() {} | 1532 func (*AppEngineModule_Handler_StaticFiles) ProtoMessage() {} |
| 1064 func (*AppEngineModule_Handler_StaticFiles) Descriptor() ([]byte, []int) { | 1533 func (*AppEngineModule_Handler_StaticFiles) Descriptor() ([]byte, []int) { |
| 1065 » return fileDescriptor1, []int{2, 3, 0} | 1534 » return fileDescriptor1, []int{3, 4, 0} |
| 1066 } | 1535 } |
| 1067 | 1536 |
| 1068 type isAppEngineModule_Handler_StaticFiles_BaseDir interface { | 1537 type isAppEngineModule_Handler_StaticFiles_BaseDir interface { |
| 1069 isAppEngineModule_Handler_StaticFiles_BaseDir() | 1538 isAppEngineModule_Handler_StaticFiles_BaseDir() |
| 1070 } | 1539 } |
| 1071 | 1540 |
| 1072 type AppEngineModule_Handler_StaticFiles_Path struct { | 1541 type AppEngineModule_Handler_StaticFiles_Path struct { |
| 1073 Path string `protobuf:"bytes,1,opt,name=path,oneof"` | 1542 Path string `protobuf:"bytes,1,opt,name=path,oneof"` |
| 1074 } | 1543 } |
| 1075 type AppEngineModule_Handler_StaticFiles_Build struct { | 1544 type AppEngineModule_Handler_StaticFiles_Build struct { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1186 | 1655 |
| 1187 // * A set of Handler messages. | 1656 // * A set of Handler messages. |
| 1188 type AppEngineModule_HandlerSet struct { | 1657 type AppEngineModule_HandlerSet struct { |
| 1189 // * The handler messages. | 1658 // * The handler messages. |
| 1190 Handler []*AppEngineModule_Handler `protobuf:"bytes,1,rep,name=handler"
json:"handler,omitempty"` | 1659 Handler []*AppEngineModule_Handler `protobuf:"bytes,1,rep,name=handler"
json:"handler,omitempty"` |
| 1191 } | 1660 } |
| 1192 | 1661 |
| 1193 func (m *AppEngineModule_HandlerSet) Reset() { *m = AppEngine
Module_HandlerSet{} } | 1662 func (m *AppEngineModule_HandlerSet) Reset() { *m = AppEngine
Module_HandlerSet{} } |
| 1194 func (m *AppEngineModule_HandlerSet) String() string { return proto.C
ompactTextString(m) } | 1663 func (m *AppEngineModule_HandlerSet) String() string { return proto.C
ompactTextString(m) } |
| 1195 func (*AppEngineModule_HandlerSet) ProtoMessage() {} | 1664 func (*AppEngineModule_HandlerSet) ProtoMessage() {} |
| 1196 func (*AppEngineModule_HandlerSet) Descriptor() ([]byte, []int) { return fileDes
criptor1, []int{2, 4} } | 1665 func (*AppEngineModule_HandlerSet) Descriptor() ([]byte, []int) { return fileDes
criptor1, []int{3, 5} } |
| 1197 | 1666 |
| 1198 func (m *AppEngineModule_HandlerSet) GetHandler() []*AppEngineModule_Handler { | 1667 func (m *AppEngineModule_HandlerSet) GetHandler() []*AppEngineModule_Handler { |
| 1199 if m != nil { | 1668 if m != nil { |
| 1200 return m.Handler | 1669 return m.Handler |
| 1201 } | 1670 } |
| 1202 return nil | 1671 return nil |
| 1203 } | 1672 } |
| 1204 | 1673 |
| 1205 // * | 1674 // * |
| 1206 // Defines a set of AppEngine-wide resources. | 1675 // Defines a set of AppEngine-wide resources. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1218 Dispatch []string `protobuf:"bytes,2,rep,name=dispatch" json:"dispatch,o
mitempty"` | 1687 Dispatch []string `protobuf:"bytes,2,rep,name=dispatch" json:"dispatch,o
mitempty"` |
| 1219 // * Task queues. | 1688 // * Task queues. |
| 1220 TaskQueue []*AppEngineResources_TaskQueue `protobuf:"bytes,3,rep,name=ta
sk_queue,json=taskQueue" json:"task_queue,omitempty"` | 1689 TaskQueue []*AppEngineResources_TaskQueue `protobuf:"bytes,3,rep,name=ta
sk_queue,json=taskQueue" json:"task_queue,omitempty"` |
| 1221 // * The cron message. | 1690 // * The cron message. |
| 1222 Cron []*AppEngineResources_Cron `protobuf:"bytes,4,rep,name=cron" json:"
cron,omitempty"` | 1691 Cron []*AppEngineResources_Cron `protobuf:"bytes,4,rep,name=cron" json:"
cron,omitempty"` |
| 1223 } | 1692 } |
| 1224 | 1693 |
| 1225 func (m *AppEngineResources) Reset() { *m = AppEngineResource
s{} } | 1694 func (m *AppEngineResources) Reset() { *m = AppEngineResource
s{} } |
| 1226 func (m *AppEngineResources) String() string { return proto.CompactTe
xtString(m) } | 1695 func (m *AppEngineResources) String() string { return proto.CompactTe
xtString(m) } |
| 1227 func (*AppEngineResources) ProtoMessage() {} | 1696 func (*AppEngineResources) ProtoMessage() {} |
| 1228 func (*AppEngineResources) Descriptor() ([]byte, []int) { return fileDescriptor1
, []int{3} } | 1697 func (*AppEngineResources) Descriptor() ([]byte, []int) { return fileDescriptor1
, []int{4} } |
| 1229 | 1698 |
| 1230 func (m *AppEngineResources) GetIndex() []*AppEngineResources_Index { | 1699 func (m *AppEngineResources) GetIndex() []*AppEngineResources_Index { |
| 1231 if m != nil { | 1700 if m != nil { |
| 1232 return m.Index | 1701 return m.Index |
| 1233 } | 1702 } |
| 1234 return nil | 1703 return nil |
| 1235 } | 1704 } |
| 1236 | 1705 |
| 1237 func (m *AppEngineResources) GetDispatch() []string { | 1706 func (m *AppEngineResources) GetDispatch() []string { |
| 1238 if m != nil { | 1707 if m != nil { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1261 Kind string `protobuf:"bytes,1,opt,name=kind" json:"kind,omitempty"` | 1730 Kind string `protobuf:"bytes,1,opt,name=kind" json:"kind,omitempty"` |
| 1262 // The list of properties in the index (ordered). | 1731 // The list of properties in the index (ordered). |
| 1263 Property []*AppEngineResources_Index_Property `protobuf:"bytes,2,rep,nam
e=property" json:"property,omitempty"` | 1732 Property []*AppEngineResources_Index_Property `protobuf:"bytes,2,rep,nam
e=property" json:"property,omitempty"` |
| 1264 // True if this will be used by an ancestor query. | 1733 // True if this will be used by an ancestor query. |
| 1265 Ancestor bool `protobuf:"varint,4,opt,name=ancestor" json:"ancestor,omit
empty"` | 1734 Ancestor bool `protobuf:"varint,4,opt,name=ancestor" json:"ancestor,omit
empty"` |
| 1266 } | 1735 } |
| 1267 | 1736 |
| 1268 func (m *AppEngineResources_Index) Reset() { *m = AppEngineRe
sources_Index{} } | 1737 func (m *AppEngineResources_Index) Reset() { *m = AppEngineRe
sources_Index{} } |
| 1269 func (m *AppEngineResources_Index) String() string { return proto.Com
pactTextString(m) } | 1738 func (m *AppEngineResources_Index) String() string { return proto.Com
pactTextString(m) } |
| 1270 func (*AppEngineResources_Index) ProtoMessage() {} | 1739 func (*AppEngineResources_Index) ProtoMessage() {} |
| 1271 func (*AppEngineResources_Index) Descriptor() ([]byte, []int) { return fileDescr
iptor1, []int{3, 0} } | 1740 func (*AppEngineResources_Index) Descriptor() ([]byte, []int) { return fileDescr
iptor1, []int{4, 0} } |
| 1272 | 1741 |
| 1273 func (m *AppEngineResources_Index) GetKind() string { | 1742 func (m *AppEngineResources_Index) GetKind() string { |
| 1274 if m != nil { | 1743 if m != nil { |
| 1275 return m.Kind | 1744 return m.Kind |
| 1276 } | 1745 } |
| 1277 return "" | 1746 return "" |
| 1278 } | 1747 } |
| 1279 | 1748 |
| 1280 func (m *AppEngineResources_Index) GetProperty() []*AppEngineResources_Index_Pro
perty { | 1749 func (m *AppEngineResources_Index) GetProperty() []*AppEngineResources_Index_Pro
perty { |
| 1281 if m != nil { | 1750 if m != nil { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1294 // Single property definition. | 1763 // Single property definition. |
| 1295 type AppEngineResources_Index_Property struct { | 1764 type AppEngineResources_Index_Property struct { |
| 1296 Name string `protobuf:"bytes,1,opt,name
=name" json:"name,omitempty"` | 1765 Name string `protobuf:"bytes,1,opt,name
=name" json:"name,omitempty"` |
| 1297 Direction AppEngineResources_Index_Direction `protobuf:"varint,2,opt,nam
e=direction,enum=deploy.AppEngineResources_Index_Direction" json:"direction,omit
empty"` | 1766 Direction AppEngineResources_Index_Direction `protobuf:"varint,2,opt,nam
e=direction,enum=deploy.AppEngineResources_Index_Direction" json:"direction,omit
empty"` |
| 1298 } | 1767 } |
| 1299 | 1768 |
| 1300 func (m *AppEngineResources_Index_Property) Reset() { *m = AppEngineReso
urces_Index_Property{} } | 1769 func (m *AppEngineResources_Index_Property) Reset() { *m = AppEngineReso
urces_Index_Property{} } |
| 1301 func (m *AppEngineResources_Index_Property) String() string { return proto.Compa
ctTextString(m) } | 1770 func (m *AppEngineResources_Index_Property) String() string { return proto.Compa
ctTextString(m) } |
| 1302 func (*AppEngineResources_Index_Property) ProtoMessage() {} | 1771 func (*AppEngineResources_Index_Property) ProtoMessage() {} |
| 1303 func (*AppEngineResources_Index_Property) Descriptor() ([]byte, []int) { | 1772 func (*AppEngineResources_Index_Property) Descriptor() ([]byte, []int) { |
| 1304 » return fileDescriptor1, []int{3, 0, 0} | 1773 » return fileDescriptor1, []int{4, 0, 0} |
| 1305 } | 1774 } |
| 1306 | 1775 |
| 1307 func (m *AppEngineResources_Index_Property) GetName() string { | 1776 func (m *AppEngineResources_Index_Property) GetName() string { |
| 1308 if m != nil { | 1777 if m != nil { |
| 1309 return m.Name | 1778 return m.Name |
| 1310 } | 1779 } |
| 1311 return "" | 1780 return "" |
| 1312 } | 1781 } |
| 1313 | 1782 |
| 1314 func (m *AppEngineResources_Index_Property) GetDirection() AppEngineResources_In
dex_Direction { | 1783 func (m *AppEngineResources_Index_Property) GetDirection() AppEngineResources_In
dex_Direction { |
| 1315 if m != nil { | 1784 if m != nil { |
| 1316 return m.Direction | 1785 return m.Direction |
| 1317 } | 1786 } |
| 1318 return AppEngineResources_Index_ASCENDING | 1787 return AppEngineResources_Index_ASCENDING |
| 1319 } | 1788 } |
| 1320 | 1789 |
| 1321 // Defines a task queue. | 1790 // Defines a task queue. |
| 1322 type AppEngineResources_TaskQueue struct { | 1791 type AppEngineResources_TaskQueue struct { |
| 1323 Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` | 1792 Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` |
| 1324 // Types that are valid to be assigned to Type: | 1793 // Types that are valid to be assigned to Type: |
| 1325 // *AppEngineResources_TaskQueue_Push_ | 1794 // *AppEngineResources_TaskQueue_Push_ |
| 1326 Type isAppEngineResources_TaskQueue_Type `protobuf_oneof:"type"` | 1795 Type isAppEngineResources_TaskQueue_Type `protobuf_oneof:"type"` |
| 1327 } | 1796 } |
| 1328 | 1797 |
| 1329 func (m *AppEngineResources_TaskQueue) Reset() { *m = AppEngi
neResources_TaskQueue{} } | 1798 func (m *AppEngineResources_TaskQueue) Reset() { *m = AppEngi
neResources_TaskQueue{} } |
| 1330 func (m *AppEngineResources_TaskQueue) String() string { return proto
.CompactTextString(m) } | 1799 func (m *AppEngineResources_TaskQueue) String() string { return proto
.CompactTextString(m) } |
| 1331 func (*AppEngineResources_TaskQueue) ProtoMessage() {} | 1800 func (*AppEngineResources_TaskQueue) ProtoMessage() {} |
| 1332 func (*AppEngineResources_TaskQueue) Descriptor() ([]byte, []int) { return fileD
escriptor1, []int{3, 1} } | 1801 func (*AppEngineResources_TaskQueue) Descriptor() ([]byte, []int) { return fileD
escriptor1, []int{4, 1} } |
| 1333 | 1802 |
| 1334 type isAppEngineResources_TaskQueue_Type interface { | 1803 type isAppEngineResources_TaskQueue_Type interface { |
| 1335 isAppEngineResources_TaskQueue_Type() | 1804 isAppEngineResources_TaskQueue_Type() |
| 1336 } | 1805 } |
| 1337 | 1806 |
| 1338 type AppEngineResources_TaskQueue_Push_ struct { | 1807 type AppEngineResources_TaskQueue_Push_ struct { |
| 1339 Push *AppEngineResources_TaskQueue_Push `protobuf:"bytes,2,opt,name=push
,oneof"` | 1808 Push *AppEngineResources_TaskQueue_Push `protobuf:"bytes,2,opt,name=push
,oneof"` |
| 1340 } | 1809 } |
| 1341 | 1810 |
| 1342 func (*AppEngineResources_TaskQueue_Push_) isAppEngineResources_TaskQueue_Type()
{} | 1811 func (*AppEngineResources_TaskQueue_Push_) isAppEngineResources_TaskQueue_Type()
{} |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 // Defines a push queue. | 1890 // Defines a push queue. |
| 1422 // | 1891 // |
| 1423 // This queue will push requests to the module in which it is declared. | 1892 // This queue will push requests to the module in which it is declared. |
| 1424 type AppEngineResources_TaskQueue_Push struct { | 1893 type AppEngineResources_TaskQueue_Push struct { |
| 1425 Rate string `protobuf:"bytes,1,opt,name=rate" json:"ra
te,omitempty"` | 1894 Rate string `protobuf:"bytes,1,opt,name=rate" json:"ra
te,omitempty"` |
| 1426 BucketSize int32 `protobuf:"varint,2,opt,name=bucket_size,j
son=bucketSize" json:"bucket_size,omitempty"` | 1895 BucketSize int32 `protobuf:"varint,2,opt,name=bucket_size,j
son=bucketSize" json:"bucket_size,omitempty"` |
| 1427 RetryTaskAgeLimit string `protobuf:"bytes,3,opt,name=retry_task_age
_limit,json=retryTaskAgeLimit" json:"retry_task_age_limit,omitempty"` | 1896 RetryTaskAgeLimit string `protobuf:"bytes,3,opt,name=retry_task_age
_limit,json=retryTaskAgeLimit" json:"retry_task_age_limit,omitempty"` |
| 1428 RetryMinBackoffSeconds int32 `protobuf:"varint,4,opt,name=retry_min_bac
koff_seconds,json=retryMinBackoffSeconds" json:"retry_min_backoff_seconds,omitem
pty"` | 1897 RetryMinBackoffSeconds int32 `protobuf:"varint,4,opt,name=retry_min_bac
koff_seconds,json=retryMinBackoffSeconds" json:"retry_min_backoff_seconds,omitem
pty"` |
| 1429 RetryMaxBackoffSeconds int32 `protobuf:"varint,5,opt,name=retry_max_bac
koff_seconds,json=retryMaxBackoffSeconds" json:"retry_max_backoff_seconds,omitem
pty"` | 1898 RetryMaxBackoffSeconds int32 `protobuf:"varint,5,opt,name=retry_max_bac
koff_seconds,json=retryMaxBackoffSeconds" json:"retry_max_backoff_seconds,omitem
pty"` |
| 1430 RetryMaxDoublings int32 `protobuf:"varint,6,opt,name=retry_max_dou
blings,json=retryMaxDoublings" json:"retry_max_doublings,omitempty"` | 1899 RetryMaxDoublings int32 `protobuf:"varint,6,opt,name=retry_max_dou
blings,json=retryMaxDoublings" json:"retry_max_doublings,omitempty"` |
| 1900 MaxConcurrentRequests int32 `protobuf:"varint,7,opt,name=max_concurren
t_requests,json=maxConcurrentRequests" json:"max_concurrent_requests,omitempty"` |
| 1431 } | 1901 } |
| 1432 | 1902 |
| 1433 func (m *AppEngineResources_TaskQueue_Push) Reset() { *m = AppEngineReso
urces_TaskQueue_Push{} } | 1903 func (m *AppEngineResources_TaskQueue_Push) Reset() { *m = AppEngineReso
urces_TaskQueue_Push{} } |
| 1434 func (m *AppEngineResources_TaskQueue_Push) String() string { return proto.Compa
ctTextString(m) } | 1904 func (m *AppEngineResources_TaskQueue_Push) String() string { return proto.Compa
ctTextString(m) } |
| 1435 func (*AppEngineResources_TaskQueue_Push) ProtoMessage() {} | 1905 func (*AppEngineResources_TaskQueue_Push) ProtoMessage() {} |
| 1436 func (*AppEngineResources_TaskQueue_Push) Descriptor() ([]byte, []int) { | 1906 func (*AppEngineResources_TaskQueue_Push) Descriptor() ([]byte, []int) { |
| 1437 » return fileDescriptor1, []int{3, 1, 0} | 1907 » return fileDescriptor1, []int{4, 1, 0} |
| 1438 } | 1908 } |
| 1439 | 1909 |
| 1440 func (m *AppEngineResources_TaskQueue_Push) GetRate() string { | 1910 func (m *AppEngineResources_TaskQueue_Push) GetRate() string { |
| 1441 if m != nil { | 1911 if m != nil { |
| 1442 return m.Rate | 1912 return m.Rate |
| 1443 } | 1913 } |
| 1444 return "" | 1914 return "" |
| 1445 } | 1915 } |
| 1446 | 1916 |
| 1447 func (m *AppEngineResources_TaskQueue_Push) GetBucketSize() int32 { | 1917 func (m *AppEngineResources_TaskQueue_Push) GetBucketSize() int32 { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 1472 return 0 | 1942 return 0 |
| 1473 } | 1943 } |
| 1474 | 1944 |
| 1475 func (m *AppEngineResources_TaskQueue_Push) GetRetryMaxDoublings() int32 { | 1945 func (m *AppEngineResources_TaskQueue_Push) GetRetryMaxDoublings() int32 { |
| 1476 if m != nil { | 1946 if m != nil { |
| 1477 return m.RetryMaxDoublings | 1947 return m.RetryMaxDoublings |
| 1478 } | 1948 } |
| 1479 return 0 | 1949 return 0 |
| 1480 } | 1950 } |
| 1481 | 1951 |
| 1952 func (m *AppEngineResources_TaskQueue_Push) GetMaxConcurrentRequests() int32 { |
| 1953 if m != nil { |
| 1954 return m.MaxConcurrentRequests |
| 1955 } |
| 1956 return 0 |
| 1957 } |
| 1958 |
| 1482 // * | 1959 // * |
| 1483 // Defines a cron entry. | 1960 // Defines a cron entry. |
| 1484 // | 1961 // |
| 1485 // This cron will send requests to the module in which it is declared. | 1962 // This cron will send requests to the module in which it is declared. |
| 1486 type AppEngineResources_Cron struct { | 1963 type AppEngineResources_Cron struct { |
| 1487 // The URL. | 1964 // The URL. |
| 1488 Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` | 1965 Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` |
| 1489 // The description. | 1966 // The description. |
| 1490 Description string `protobuf:"bytes,2,opt,name=description" json:"descri
ption,omitempty"` | 1967 Description string `protobuf:"bytes,2,opt,name=description" json:"descri
ption,omitempty"` |
| 1491 // The cron's schedule string. | 1968 // The cron's schedule string. |
| 1492 Schedule string `protobuf:"bytes,3,opt,name=schedule" json:"schedule,omi
tempty"` | 1969 Schedule string `protobuf:"bytes,3,opt,name=schedule" json:"schedule,omi
tempty"` |
| 1493 } | 1970 } |
| 1494 | 1971 |
| 1495 func (m *AppEngineResources_Cron) Reset() { *m = AppEngineRes
ources_Cron{} } | 1972 func (m *AppEngineResources_Cron) Reset() { *m = AppEngineRes
ources_Cron{} } |
| 1496 func (m *AppEngineResources_Cron) String() string { return proto.Comp
actTextString(m) } | 1973 func (m *AppEngineResources_Cron) String() string { return proto.Comp
actTextString(m) } |
| 1497 func (*AppEngineResources_Cron) ProtoMessage() {} | 1974 func (*AppEngineResources_Cron) ProtoMessage() {} |
| 1498 func (*AppEngineResources_Cron) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{3, 2} } | 1975 func (*AppEngineResources_Cron) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{4, 2} } |
| 1499 | 1976 |
| 1500 func (m *AppEngineResources_Cron) GetUrl() string { | 1977 func (m *AppEngineResources_Cron) GetUrl() string { |
| 1501 if m != nil { | 1978 if m != nil { |
| 1502 return m.Url | 1979 return m.Url |
| 1503 } | 1980 } |
| 1504 return "" | 1981 return "" |
| 1505 } | 1982 } |
| 1506 | 1983 |
| 1507 func (m *AppEngineResources_Cron) GetDescription() string { | 1984 func (m *AppEngineResources_Cron) GetDescription() string { |
| 1508 if m != nil { | 1985 if m != nil { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1522 type ContainerEnginePod struct { | 1999 type ContainerEnginePod struct { |
| 1523 // * The pod definition. | 2000 // * The pod definition. |
| 1524 KubePod *KubernetesPod `protobuf:"bytes,1,opt,name=kube_pod,json=kubePod
" json:"kube_pod,omitempty"` | 2001 KubePod *KubernetesPod `protobuf:"bytes,1,opt,name=kube_pod,json=kubePod
" json:"kube_pod,omitempty"` |
| 1525 // * OAuth2 scopes that pods in this cluster require. | 2002 // * OAuth2 scopes that pods in this cluster require. |
| 1526 Scopes []string `protobuf:"bytes,2,rep,name=scopes" json:"scopes,omitemp
ty"` | 2003 Scopes []string `protobuf:"bytes,2,rep,name=scopes" json:"scopes,omitemp
ty"` |
| 1527 } | 2004 } |
| 1528 | 2005 |
| 1529 func (m *ContainerEnginePod) Reset() { *m = ContainerEnginePo
d{} } | 2006 func (m *ContainerEnginePod) Reset() { *m = ContainerEnginePo
d{} } |
| 1530 func (m *ContainerEnginePod) String() string { return proto.CompactTe
xtString(m) } | 2007 func (m *ContainerEnginePod) String() string { return proto.CompactTe
xtString(m) } |
| 1531 func (*ContainerEnginePod) ProtoMessage() {} | 2008 func (*ContainerEnginePod) ProtoMessage() {} |
| 1532 func (*ContainerEnginePod) Descriptor() ([]byte, []int) { return fileDescriptor1
, []int{4} } | 2009 func (*ContainerEnginePod) Descriptor() ([]byte, []int) { return fileDescriptor1
, []int{5} } |
| 1533 | 2010 |
| 1534 func (m *ContainerEnginePod) GetKubePod() *KubernetesPod { | 2011 func (m *ContainerEnginePod) GetKubePod() *KubernetesPod { |
| 1535 if m != nil { | 2012 if m != nil { |
| 1536 return m.KubePod | 2013 return m.KubePod |
| 1537 } | 2014 } |
| 1538 return nil | 2015 return nil |
| 1539 } | 2016 } |
| 1540 | 2017 |
| 1541 func (m *ContainerEnginePod) GetScopes() []string { | 2018 func (m *ContainerEnginePod) GetScopes() []string { |
| 1542 if m != nil { | 2019 if m != nil { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1578 Labels map[string]string `protobuf:"bytes,11,rep,name=labels" json:"labe
ls,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name
=value"` | 2055 Labels map[string]string `protobuf:"bytes,11,rep,name=labels" json:"labe
ls,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name
=value"` |
| 1579 // * | 2056 // * |
| 1580 // Deployment configuration value for amount of non-crashing time before
this | 2057 // Deployment configuration value for amount of non-crashing time before
this |
| 1581 // pod is available. | 2058 // pod is available. |
| 1582 MinReady *google_protobuf.Duration `protobuf:"bytes,12,opt,name=min_read
y,json=minReady" json:"min_ready,omitempty"` | 2059 MinReady *google_protobuf.Duration `protobuf:"bytes,12,opt,name=min_read
y,json=minReady" json:"min_ready,omitempty"` |
| 1583 } | 2060 } |
| 1584 | 2061 |
| 1585 func (m *KubernetesPod) Reset() { *m = KubernetesPod{} } | 2062 func (m *KubernetesPod) Reset() { *m = KubernetesPod{} } |
| 1586 func (m *KubernetesPod) String() string { return proto.CompactTextStr
ing(m) } | 2063 func (m *KubernetesPod) String() string { return proto.CompactTextStr
ing(m) } |
| 1587 func (*KubernetesPod) ProtoMessage() {} | 2064 func (*KubernetesPod) ProtoMessage() {} |
| 1588 func (*KubernetesPod) Descriptor() ([]byte, []int) { return fileDescriptor1, []i
nt{5} } | 2065 func (*KubernetesPod) Descriptor() ([]byte, []int) { return fileDescriptor1, []i
nt{6} } |
| 1589 | 2066 |
| 1590 func (m *KubernetesPod) GetName() string { | 2067 func (m *KubernetesPod) GetName() string { |
| 1591 if m != nil { | 2068 if m != nil { |
| 1592 return m.Name | 2069 return m.Name |
| 1593 } | 2070 } |
| 1594 return "" | 2071 return "" |
| 1595 } | 2072 } |
| 1596 | 2073 |
| 1597 func (m *KubernetesPod) GetRestartPolicy() KubernetesPod_RestartPolicy { | 2074 func (m *KubernetesPod) GetRestartPolicy() KubernetesPod_RestartPolicy { |
| 1598 if m != nil { | 2075 if m != nil { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1682 ReadinessProbe *KubernetesPod_Container_Probe `protobuf:"bytes,17,opt,na
me=readiness_probe,json=readinessProbe" json:"readiness_probe,omitempty"` | 2159 ReadinessProbe *KubernetesPod_Container_Probe `protobuf:"bytes,17,opt,na
me=readiness_probe,json=readinessProbe" json:"readiness_probe,omitempty"` |
| 1683 // * Handler to execute immediately after the container has started. | 2160 // * Handler to execute immediately after the container has started. |
| 1684 PostStart *KubernetesPod_Container_Handler `protobuf:"bytes,18,opt,name=
post_start,json=postStart" json:"post_start,omitempty"` | 2161 PostStart *KubernetesPod_Container_Handler `protobuf:"bytes,18,opt,name=
post_start,json=postStart" json:"post_start,omitempty"` |
| 1685 // * Handler to execute immediately before a container is terminated. | 2162 // * Handler to execute immediately before a container is terminated. |
| 1686 PreStop *KubernetesPod_Container_Handler `protobuf:"bytes,19,opt,name=pr
e_stop,json=preStop" json:"pre_stop,omitempty"` | 2163 PreStop *KubernetesPod_Container_Handler `protobuf:"bytes,19,opt,name=pr
e_stop,json=preStop" json:"pre_stop,omitempty"` |
| 1687 } | 2164 } |
| 1688 | 2165 |
| 1689 func (m *KubernetesPod_Container) Reset() { *m = KubernetesPo
d_Container{} } | 2166 func (m *KubernetesPod_Container) Reset() { *m = KubernetesPo
d_Container{} } |
| 1690 func (m *KubernetesPod_Container) String() string { return proto.Comp
actTextString(m) } | 2167 func (m *KubernetesPod_Container) String() string { return proto.Comp
actTextString(m) } |
| 1691 func (*KubernetesPod_Container) ProtoMessage() {} | 2168 func (*KubernetesPod_Container) ProtoMessage() {} |
| 1692 func (*KubernetesPod_Container) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{5, 0} } | 2169 func (*KubernetesPod_Container) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{6, 0} } |
| 1693 | 2170 |
| 1694 type isKubernetesPod_Container_Dockerfile interface { | 2171 type isKubernetesPod_Container_Dockerfile interface { |
| 1695 isKubernetesPod_Container_Dockerfile() | 2172 isKubernetesPod_Container_Dockerfile() |
| 1696 } | 2173 } |
| 1697 | 2174 |
| 1698 type KubernetesPod_Container_Path struct { | 2175 type KubernetesPod_Container_Path struct { |
| 1699 Path string `protobuf:"bytes,2,opt,name=path,oneof"` | 2176 Path string `protobuf:"bytes,2,opt,name=path,oneof"` |
| 1700 } | 2177 } |
| 1701 type KubernetesPod_Container_Build struct { | 2178 type KubernetesPod_Container_Build struct { |
| 1702 Build *BuildPath `protobuf:"bytes,3,opt,name=build,oneof"` | 2179 Build *BuildPath `protobuf:"bytes,3,opt,name=build,oneof"` |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1895 // * The container port. | 2372 // * The container port. |
| 1896 ContainerPort int32 `protobuf:"varint,2,opt,name=container_port,json=con
tainerPort" json:"container_port,omitempty"` | 2373 ContainerPort int32 `protobuf:"varint,2,opt,name=container_port,json=con
tainerPort" json:"container_port,omitempty"` |
| 1897 // * The protocol to forward. | 2374 // * The protocol to forward. |
| 1898 Protocol KubernetesPod_Container_ContainerPort_Protocol `protobuf:"varin
t,4,opt,name=protocol,enum=deploy.KubernetesPod_Container_ContainerPort_Protocol
" json:"protocol,omitempty"` | 2375 Protocol KubernetesPod_Container_ContainerPort_Protocol `protobuf:"varin
t,4,opt,name=protocol,enum=deploy.KubernetesPod_Container_ContainerPort_Protocol
" json:"protocol,omitempty"` |
| 1899 } | 2376 } |
| 1900 | 2377 |
| 1901 func (m *KubernetesPod_Container_ContainerPort) Reset() { *m = Kubernete
sPod_Container_ContainerPort{} } | 2378 func (m *KubernetesPod_Container_ContainerPort) Reset() { *m = Kubernete
sPod_Container_ContainerPort{} } |
| 1902 func (m *KubernetesPod_Container_ContainerPort) String() string { return proto.C
ompactTextString(m) } | 2379 func (m *KubernetesPod_Container_ContainerPort) String() string { return proto.C
ompactTextString(m) } |
| 1903 func (*KubernetesPod_Container_ContainerPort) ProtoMessage() {} | 2380 func (*KubernetesPod_Container_ContainerPort) ProtoMessage() {} |
| 1904 func (*KubernetesPod_Container_ContainerPort) Descriptor() ([]byte, []int) { | 2381 func (*KubernetesPod_Container_ContainerPort) Descriptor() ([]byte, []int) { |
| 1905 » return fileDescriptor1, []int{5, 0, 0} | 2382 » return fileDescriptor1, []int{6, 0, 0} |
| 1906 } | 2383 } |
| 1907 | 2384 |
| 1908 func (m *KubernetesPod_Container_ContainerPort) GetName() string { | 2385 func (m *KubernetesPod_Container_ContainerPort) GetName() string { |
| 1909 if m != nil { | 2386 if m != nil { |
| 1910 return m.Name | 2387 return m.Name |
| 1911 } | 2388 } |
| 1912 return "" | 2389 return "" |
| 1913 } | 2390 } |
| 1914 | 2391 |
| 1915 func (m *KubernetesPod_Container_ContainerPort) GetContainerPort() int32 { | 2392 func (m *KubernetesPod_Container_ContainerPort) GetContainerPort() int32 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1930 type KubernetesPod_Container_Resources struct { | 2407 type KubernetesPod_Container_Resources struct { |
| 1931 // * CPU resource requirements, between [0.0 and 100.0]. | 2408 // * CPU resource requirements, between [0.0 and 100.0]. |
| 1932 Cpu float32 `protobuf:"fixed32,1,op
t,name=cpu" json:"cpu,omitempty"` | 2409 Cpu float32 `protobuf:"fixed32,1,op
t,name=cpu" json:"cpu,omitempty"` |
| 1933 Memory *KubernetesPod_Container_Resources_Memory `protobuf:"bytes,2,opt,
name=memory" json:"memory,omitempty"` | 2410 Memory *KubernetesPod_Container_Resources_Memory `protobuf:"bytes,2,opt,
name=memory" json:"memory,omitempty"` |
| 1934 } | 2411 } |
| 1935 | 2412 |
| 1936 func (m *KubernetesPod_Container_Resources) Reset() { *m = KubernetesPod
_Container_Resources{} } | 2413 func (m *KubernetesPod_Container_Resources) Reset() { *m = KubernetesPod
_Container_Resources{} } |
| 1937 func (m *KubernetesPod_Container_Resources) String() string { return proto.Compa
ctTextString(m) } | 2414 func (m *KubernetesPod_Container_Resources) String() string { return proto.Compa
ctTextString(m) } |
| 1938 func (*KubernetesPod_Container_Resources) ProtoMessage() {} | 2415 func (*KubernetesPod_Container_Resources) ProtoMessage() {} |
| 1939 func (*KubernetesPod_Container_Resources) Descriptor() ([]byte, []int) { | 2416 func (*KubernetesPod_Container_Resources) Descriptor() ([]byte, []int) { |
| 1940 » return fileDescriptor1, []int{5, 0, 2} | 2417 » return fileDescriptor1, []int{6, 0, 2} |
| 1941 } | 2418 } |
| 1942 | 2419 |
| 1943 func (m *KubernetesPod_Container_Resources) GetCpu() float32 { | 2420 func (m *KubernetesPod_Container_Resources) GetCpu() float32 { |
| 1944 if m != nil { | 2421 if m != nil { |
| 1945 return m.Cpu | 2422 return m.Cpu |
| 1946 } | 2423 } |
| 1947 return 0 | 2424 return 0 |
| 1948 } | 2425 } |
| 1949 | 2426 |
| 1950 func (m *KubernetesPod_Container_Resources) GetMemory() *KubernetesPod_Container
_Resources_Memory { | 2427 func (m *KubernetesPod_Container_Resources) GetMemory() *KubernetesPod_Container
_Resources_Memory { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1961 // * The number of units. | 2438 // * The number of units. |
| 1962 Amount int32 `protobuf:"varint,2,opt,name=amount" json:"amount,omitempty
"` | 2439 Amount int32 `protobuf:"varint,2,opt,name=amount" json:"amount,omitempty
"` |
| 1963 } | 2440 } |
| 1964 | 2441 |
| 1965 func (m *KubernetesPod_Container_Resources_Memory) Reset() { | 2442 func (m *KubernetesPod_Container_Resources_Memory) Reset() { |
| 1966 *m = KubernetesPod_Container_Resources_Memory{} | 2443 *m = KubernetesPod_Container_Resources_Memory{} |
| 1967 } | 2444 } |
| 1968 func (m *KubernetesPod_Container_Resources_Memory) String() string { return prot
o.CompactTextString(m) } | 2445 func (m *KubernetesPod_Container_Resources_Memory) String() string { return prot
o.CompactTextString(m) } |
| 1969 func (*KubernetesPod_Container_Resources_Memory) ProtoMessage() {} | 2446 func (*KubernetesPod_Container_Resources_Memory) ProtoMessage() {} |
| 1970 func (*KubernetesPod_Container_Resources_Memory) Descriptor() ([]byte, []int) { | 2447 func (*KubernetesPod_Container_Resources_Memory) Descriptor() ([]byte, []int) { |
| 1971 » return fileDescriptor1, []int{5, 0, 2, 0} | 2448 » return fileDescriptor1, []int{6, 0, 2, 0} |
| 1972 } | 2449 } |
| 1973 | 2450 |
| 1974 func (m *KubernetesPod_Container_Resources_Memory) GetUnit() KubernetesPod_Conta
iner_Resources_Unit { | 2451 func (m *KubernetesPod_Container_Resources_Memory) GetUnit() KubernetesPod_Conta
iner_Resources_Unit { |
| 1975 if m != nil { | 2452 if m != nil { |
| 1976 return m.Unit | 2453 return m.Unit |
| 1977 } | 2454 } |
| 1978 return KubernetesPod_Container_Resources_BYTE | 2455 return KubernetesPod_Container_Resources_BYTE |
| 1979 } | 2456 } |
| 1980 | 2457 |
| 1981 func (m *KubernetesPod_Container_Resources_Memory) GetAmount() int32 { | 2458 func (m *KubernetesPod_Container_Resources_Memory) GetAmount() int32 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1998 Host string `protobuf:"bytes,3,opt,name=host" json:"host,omitempty"` | 2475 Host string `protobuf:"bytes,3,opt,name=host" json:"host,omitempty"` |
| 1999 // * Scheme to use. Defaults to HTTP. | 2476 // * Scheme to use. Defaults to HTTP. |
| 2000 Scheme string `protobuf:"bytes,4,opt
,name=scheme" json:"scheme,omitempty"` | 2477 Scheme string `protobuf:"bytes,4,opt
,name=scheme" json:"scheme,omitempty"` |
| 2001 Headers []*KubernetesPod_Container_HttpGet_Header `protobuf:"bytes,5,rep
,name=headers" json:"headers,omitempty"` | 2478 Headers []*KubernetesPod_Container_HttpGet_Header `protobuf:"bytes,5,rep
,name=headers" json:"headers,omitempty"` |
| 2002 } | 2479 } |
| 2003 | 2480 |
| 2004 func (m *KubernetesPod_Container_HttpGet) Reset() { *m = KubernetesPod_C
ontainer_HttpGet{} } | 2481 func (m *KubernetesPod_Container_HttpGet) Reset() { *m = KubernetesPod_C
ontainer_HttpGet{} } |
| 2005 func (m *KubernetesPod_Container_HttpGet) String() string { return proto.Compact
TextString(m) } | 2482 func (m *KubernetesPod_Container_HttpGet) String() string { return proto.Compact
TextString(m) } |
| 2006 func (*KubernetesPod_Container_HttpGet) ProtoMessage() {} | 2483 func (*KubernetesPod_Container_HttpGet) ProtoMessage() {} |
| 2007 func (*KubernetesPod_Container_HttpGet) Descriptor() ([]byte, []int) { | 2484 func (*KubernetesPod_Container_HttpGet) Descriptor() ([]byte, []int) { |
| 2008 » return fileDescriptor1, []int{5, 0, 3} | 2485 » return fileDescriptor1, []int{6, 0, 3} |
| 2009 } | 2486 } |
| 2010 | 2487 |
| 2011 func (m *KubernetesPod_Container_HttpGet) GetPath() string { | 2488 func (m *KubernetesPod_Container_HttpGet) GetPath() string { |
| 2012 if m != nil { | 2489 if m != nil { |
| 2013 return m.Path | 2490 return m.Path |
| 2014 } | 2491 } |
| 2015 return "" | 2492 return "" |
| 2016 } | 2493 } |
| 2017 | 2494 |
| 2018 func (m *KubernetesPod_Container_HttpGet) GetPort() int32 { | 2495 func (m *KubernetesPod_Container_HttpGet) GetPort() int32 { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2053 // * The HTTP header value. | 2530 // * The HTTP header value. |
| 2054 Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` | 2531 Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` |
| 2055 } | 2532 } |
| 2056 | 2533 |
| 2057 func (m *KubernetesPod_Container_HttpGet_Header) Reset() { | 2534 func (m *KubernetesPod_Container_HttpGet_Header) Reset() { |
| 2058 *m = KubernetesPod_Container_HttpGet_Header{} | 2535 *m = KubernetesPod_Container_HttpGet_Header{} |
| 2059 } | 2536 } |
| 2060 func (m *KubernetesPod_Container_HttpGet_Header) String() string { return proto.
CompactTextString(m) } | 2537 func (m *KubernetesPod_Container_HttpGet_Header) String() string { return proto.
CompactTextString(m) } |
| 2061 func (*KubernetesPod_Container_HttpGet_Header) ProtoMessage() {} | 2538 func (*KubernetesPod_Container_HttpGet_Header) ProtoMessage() {} |
| 2062 func (*KubernetesPod_Container_HttpGet_Header) Descriptor() ([]byte, []int) { | 2539 func (*KubernetesPod_Container_HttpGet_Header) Descriptor() ([]byte, []int) { |
| 2063 » return fileDescriptor1, []int{5, 0, 3, 0} | 2540 » return fileDescriptor1, []int{6, 0, 3, 0} |
| 2064 } | 2541 } |
| 2065 | 2542 |
| 2066 func (m *KubernetesPod_Container_HttpGet_Header) GetName() string { | 2543 func (m *KubernetesPod_Container_HttpGet_Header) GetName() string { |
| 2067 if m != nil { | 2544 if m != nil { |
| 2068 return m.Name | 2545 return m.Name |
| 2069 } | 2546 } |
| 2070 return "" | 2547 return "" |
| 2071 } | 2548 } |
| 2072 | 2549 |
| 2073 func (m *KubernetesPod_Container_HttpGet_Header) GetValue() string { | 2550 func (m *KubernetesPod_Container_HttpGet_Header) GetValue() string { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 2092 // * Minimum number of consecutive successes to count as success. | 2569 // * Minimum number of consecutive successes to count as success. |
| 2093 SuccessThreshold int32 `protobuf:"varint,6,opt,name=success_threshold,js
on=successThreshold" json:"success_threshold,omitempty"` | 2570 SuccessThreshold int32 `protobuf:"varint,6,opt,name=success_threshold,js
on=successThreshold" json:"success_threshold,omitempty"` |
| 2094 // * Minimum number of consecutive failures to count as failure. | 2571 // * Minimum number of consecutive failures to count as failure. |
| 2095 FailureThreshold int32 `protobuf:"varint,7,opt,name=failure_threshold,js
on=failureThreshold" json:"failure_threshold,omitempty"` | 2572 FailureThreshold int32 `protobuf:"varint,7,opt,name=failure_threshold,js
on=failureThreshold" json:"failure_threshold,omitempty"` |
| 2096 } | 2573 } |
| 2097 | 2574 |
| 2098 func (m *KubernetesPod_Container_Probe) Reset() { *m = KubernetesPod_Con
tainer_Probe{} } | 2575 func (m *KubernetesPod_Container_Probe) Reset() { *m = KubernetesPod_Con
tainer_Probe{} } |
| 2099 func (m *KubernetesPod_Container_Probe) String() string { return proto.CompactTe
xtString(m) } | 2576 func (m *KubernetesPod_Container_Probe) String() string { return proto.CompactTe
xtString(m) } |
| 2100 func (*KubernetesPod_Container_Probe) ProtoMessage() {} | 2577 func (*KubernetesPod_Container_Probe) ProtoMessage() {} |
| 2101 func (*KubernetesPod_Container_Probe) Descriptor() ([]byte, []int) { | 2578 func (*KubernetesPod_Container_Probe) Descriptor() ([]byte, []int) { |
| 2102 » return fileDescriptor1, []int{5, 0, 4} | 2579 » return fileDescriptor1, []int{6, 0, 4} |
| 2103 } | 2580 } |
| 2104 | 2581 |
| 2105 func (m *KubernetesPod_Container_Probe) GetExec() []string { | 2582 func (m *KubernetesPod_Container_Probe) GetExec() []string { |
| 2106 if m != nil { | 2583 if m != nil { |
| 2107 return m.Exec | 2584 return m.Exec |
| 2108 } | 2585 } |
| 2109 return nil | 2586 return nil |
| 2110 } | 2587 } |
| 2111 | 2588 |
| 2112 func (m *KubernetesPod_Container_Probe) GetHttpGet() *KubernetesPod_Container_Ht
tpGet { | 2589 func (m *KubernetesPod_Container_Probe) GetHttpGet() *KubernetesPod_Container_Ht
tpGet { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 // * Command to execute inside the container. | 2636 // * Command to execute inside the container. |
| 2160 ExecCommand []string `protobuf:"bytes,1,rep,name=exec_command,json=execC
ommand" json:"exec_command,omitempty"` | 2637 ExecCommand []string `protobuf:"bytes,1,rep,name=exec_command,json=execC
ommand" json:"exec_command,omitempty"` |
| 2161 // * Handler defines an HTTP Get action. | 2638 // * Handler defines an HTTP Get action. |
| 2162 HttpGet *KubernetesPod_Container_HttpGet `protobuf:"bytes,2,opt,name=htt
p_get,json=httpGet" json:"http_get,omitempty"` | 2639 HttpGet *KubernetesPod_Container_HttpGet `protobuf:"bytes,2,opt,name=htt
p_get,json=httpGet" json:"http_get,omitempty"` |
| 2163 } | 2640 } |
| 2164 | 2641 |
| 2165 func (m *KubernetesPod_Container_Handler) Reset() { *m = KubernetesPod_C
ontainer_Handler{} } | 2642 func (m *KubernetesPod_Container_Handler) Reset() { *m = KubernetesPod_C
ontainer_Handler{} } |
| 2166 func (m *KubernetesPod_Container_Handler) String() string { return proto.Compact
TextString(m) } | 2643 func (m *KubernetesPod_Container_Handler) String() string { return proto.Compact
TextString(m) } |
| 2167 func (*KubernetesPod_Container_Handler) ProtoMessage() {} | 2644 func (*KubernetesPod_Container_Handler) ProtoMessage() {} |
| 2168 func (*KubernetesPod_Container_Handler) Descriptor() ([]byte, []int) { | 2645 func (*KubernetesPod_Container_Handler) Descriptor() ([]byte, []int) { |
| 2169 » return fileDescriptor1, []int{5, 0, 5} | 2646 » return fileDescriptor1, []int{6, 0, 5} |
| 2170 } | 2647 } |
| 2171 | 2648 |
| 2172 func (m *KubernetesPod_Container_Handler) GetExecCommand() []string { | 2649 func (m *KubernetesPod_Container_Handler) GetExecCommand() []string { |
| 2173 if m != nil { | 2650 if m != nil { |
| 2174 return m.ExecCommand | 2651 return m.ExecCommand |
| 2175 } | 2652 } |
| 2176 return nil | 2653 return nil |
| 2177 } | 2654 } |
| 2178 | 2655 |
| 2179 func (m *KubernetesPod_Container_Handler) GetHttpGet() *KubernetesPod_Container_
HttpGet { | 2656 func (m *KubernetesPod_Container_Handler) GetHttpGet() *KubernetesPod_Container_
HttpGet { |
| 2180 if m != nil { | 2657 if m != nil { |
| 2181 return m.HttpGet | 2658 return m.HttpGet |
| 2182 } | 2659 } |
| 2183 return nil | 2660 return nil |
| 2184 } | 2661 } |
| 2185 | 2662 |
| 2186 func init() { | 2663 func init() { |
| 2187 proto.RegisterType((*Component)(nil), "deploy.Component") | 2664 proto.RegisterType((*Component)(nil), "deploy.Component") |
| 2188 proto.RegisterType((*Component_Build)(nil), "deploy.Component.Build") | 2665 proto.RegisterType((*Component_Build)(nil), "deploy.Component.Build") |
| 2189 proto.RegisterType((*Component_Build_PythonScript)(nil), "deploy.Compone
nt.Build.PythonScript") | 2666 proto.RegisterType((*Component_Build_PythonScript)(nil), "deploy.Compone
nt.Build.PythonScript") |
| 2190 proto.RegisterType((*BuildPath)(nil), "deploy.BuildPath") | 2667 proto.RegisterType((*BuildPath)(nil), "deploy.BuildPath") |
| 2668 proto.RegisterType((*Duration)(nil), "deploy.Duration") |
| 2191 proto.RegisterType((*AppEngineModule)(nil), "deploy.AppEngineModule") | 2669 proto.RegisterType((*AppEngineModule)(nil), "deploy.AppEngineModule") |
| 2192 proto.RegisterType((*AppEngineModule_GoModule)(nil), "deploy.AppEngineMo
dule.GoModule") | 2670 proto.RegisterType((*AppEngineModule_GoModule)(nil), "deploy.AppEngineMo
dule.GoModule") |
| 2193 proto.RegisterType((*AppEngineModule_StaticModule)(nil), "deploy.AppEngi
neModule.StaticModule") | 2671 proto.RegisterType((*AppEngineModule_StaticModule)(nil), "deploy.AppEngi
neModule.StaticModule") |
| 2672 proto.RegisterType((*AppEngineModule_ClassicParams)(nil), "deploy.AppEng
ineModule.ClassicParams") |
| 2673 proto.RegisterType((*AppEngineModule_ClassicParams_AutomaticScaling)(nil
), "deploy.AppEngineModule.ClassicParams.AutomaticScaling") |
| 2674 proto.RegisterType((*AppEngineModule_ClassicParams_BasicScaling)(nil), "
deploy.AppEngineModule.ClassicParams.BasicScaling") |
| 2675 proto.RegisterType((*AppEngineModule_ClassicParams_ManualScaling)(nil),
"deploy.AppEngineModule.ClassicParams.ManualScaling") |
| 2194 proto.RegisterType((*AppEngineModule_ManagedVmParams)(nil), "deploy.AppE
ngineModule.ManagedVmParams") | 2676 proto.RegisterType((*AppEngineModule_ManagedVmParams)(nil), "deploy.AppE
ngineModule.ManagedVmParams") |
| 2195 proto.RegisterType((*AppEngineModule_Handler)(nil), "deploy.AppEngineMod
ule.Handler") | 2677 proto.RegisterType((*AppEngineModule_Handler)(nil), "deploy.AppEngineMod
ule.Handler") |
| 2196 proto.RegisterType((*AppEngineModule_Handler_StaticFiles)(nil), "deploy.
AppEngineModule.Handler.StaticFiles") | 2678 proto.RegisterType((*AppEngineModule_Handler_StaticFiles)(nil), "deploy.
AppEngineModule.Handler.StaticFiles") |
| 2197 proto.RegisterType((*AppEngineModule_HandlerSet)(nil), "deploy.AppEngine
Module.HandlerSet") | 2679 proto.RegisterType((*AppEngineModule_HandlerSet)(nil), "deploy.AppEngine
Module.HandlerSet") |
| 2198 proto.RegisterType((*AppEngineResources)(nil), "deploy.AppEngineResource
s") | 2680 proto.RegisterType((*AppEngineResources)(nil), "deploy.AppEngineResource
s") |
| 2199 proto.RegisterType((*AppEngineResources_Index)(nil), "deploy.AppEngineRe
sources.Index") | 2681 proto.RegisterType((*AppEngineResources_Index)(nil), "deploy.AppEngineRe
sources.Index") |
| 2200 proto.RegisterType((*AppEngineResources_Index_Property)(nil), "deploy.Ap
pEngineResources.Index.Property") | 2682 proto.RegisterType((*AppEngineResources_Index_Property)(nil), "deploy.Ap
pEngineResources.Index.Property") |
| 2201 proto.RegisterType((*AppEngineResources_TaskQueue)(nil), "deploy.AppEngi
neResources.TaskQueue") | 2683 proto.RegisterType((*AppEngineResources_TaskQueue)(nil), "deploy.AppEngi
neResources.TaskQueue") |
| 2202 proto.RegisterType((*AppEngineResources_TaskQueue_Push)(nil), "deploy.Ap
pEngineResources.TaskQueue.Push") | 2684 proto.RegisterType((*AppEngineResources_TaskQueue_Push)(nil), "deploy.Ap
pEngineResources.TaskQueue.Push") |
| 2203 proto.RegisterType((*AppEngineResources_Cron)(nil), "deploy.AppEngineRes
ources.Cron") | 2685 proto.RegisterType((*AppEngineResources_Cron)(nil), "deploy.AppEngineRes
ources.Cron") |
| 2204 proto.RegisterType((*ContainerEnginePod)(nil), "deploy.ContainerEnginePo
d") | 2686 proto.RegisterType((*ContainerEnginePod)(nil), "deploy.ContainerEnginePo
d") |
| 2205 proto.RegisterType((*KubernetesPod)(nil), "deploy.KubernetesPod") | 2687 proto.RegisterType((*KubernetesPod)(nil), "deploy.KubernetesPod") |
| 2206 proto.RegisterType((*KubernetesPod_Container)(nil), "deploy.KubernetesPo
d.Container") | 2688 proto.RegisterType((*KubernetesPod_Container)(nil), "deploy.KubernetesPo
d.Container") |
| 2207 proto.RegisterType((*KubernetesPod_Container_ContainerPort)(nil), "deplo
y.KubernetesPod.Container.ContainerPort") | 2689 proto.RegisterType((*KubernetesPod_Container_ContainerPort)(nil), "deplo
y.KubernetesPod.Container.ContainerPort") |
| 2208 proto.RegisterType((*KubernetesPod_Container_Resources)(nil), "deploy.Ku
bernetesPod.Container.Resources") | 2690 proto.RegisterType((*KubernetesPod_Container_Resources)(nil), "deploy.Ku
bernetesPod.Container.Resources") |
| 2209 proto.RegisterType((*KubernetesPod_Container_Resources_Memory)(nil), "de
ploy.KubernetesPod.Container.Resources.Memory") | 2691 proto.RegisterType((*KubernetesPod_Container_Resources_Memory)(nil), "de
ploy.KubernetesPod.Container.Resources.Memory") |
| 2210 proto.RegisterType((*KubernetesPod_Container_HttpGet)(nil), "deploy.Kube
rnetesPod.Container.HttpGet") | 2692 proto.RegisterType((*KubernetesPod_Container_HttpGet)(nil), "deploy.Kube
rnetesPod.Container.HttpGet") |
| 2211 proto.RegisterType((*KubernetesPod_Container_HttpGet_Header)(nil), "depl
oy.KubernetesPod.Container.HttpGet.Header") | 2693 proto.RegisterType((*KubernetesPod_Container_HttpGet_Header)(nil), "depl
oy.KubernetesPod.Container.HttpGet.Header") |
| 2212 proto.RegisterType((*KubernetesPod_Container_Probe)(nil), "deploy.Kubern
etesPod.Container.Probe") | 2694 proto.RegisterType((*KubernetesPod_Container_Probe)(nil), "deploy.Kubern
etesPod.Container.Probe") |
| 2213 proto.RegisterType((*KubernetesPod_Container_Handler)(nil), "deploy.Kube
rnetesPod.Container.Handler") | 2695 proto.RegisterType((*KubernetesPod_Container_Handler)(nil), "deploy.Kube
rnetesPod.Container.Handler") |
| 2696 proto.RegisterEnum("deploy.Duration_Unit", Duration_Unit_name, Duration_
Unit_value) |
| 2697 proto.RegisterEnum("deploy.AppEngineModule_ClassicParams_InstanceClass",
AppEngineModule_ClassicParams_InstanceClass_name, AppEngineModule_ClassicParams
_InstanceClass_value) |
| 2214 proto.RegisterEnum("deploy.AppEngineModule_Handler_LoginOption", AppEngi
neModule_Handler_LoginOption_name, AppEngineModule_Handler_LoginOption_value) | 2698 proto.RegisterEnum("deploy.AppEngineModule_Handler_LoginOption", AppEngi
neModule_Handler_LoginOption_name, AppEngineModule_Handler_LoginOption_value) |
| 2215 proto.RegisterEnum("deploy.AppEngineModule_Handler_SecureOption", AppEng
ineModule_Handler_SecureOption_name, AppEngineModule_Handler_SecureOption_value) | 2699 proto.RegisterEnum("deploy.AppEngineModule_Handler_SecureOption", AppEng
ineModule_Handler_SecureOption_name, AppEngineModule_Handler_SecureOption_value) |
| 2216 proto.RegisterEnum("deploy.AppEngineResources_Index_Direction", AppEngin
eResources_Index_Direction_name, AppEngineResources_Index_Direction_value) | 2700 proto.RegisterEnum("deploy.AppEngineResources_Index_Direction", AppEngin
eResources_Index_Direction_name, AppEngineResources_Index_Direction_value) |
| 2217 proto.RegisterEnum("deploy.KubernetesPod_RestartPolicy", KubernetesPod_R
estartPolicy_name, KubernetesPod_RestartPolicy_value) | 2701 proto.RegisterEnum("deploy.KubernetesPod_RestartPolicy", KubernetesPod_R
estartPolicy_name, KubernetesPod_RestartPolicy_value) |
| 2218 proto.RegisterEnum("deploy.KubernetesPod_Container_Type", KubernetesPod_
Container_Type_name, KubernetesPod_Container_Type_value) | 2702 proto.RegisterEnum("deploy.KubernetesPod_Container_Type", KubernetesPod_
Container_Type_name, KubernetesPod_Container_Type_value) |
| 2219 proto.RegisterEnum("deploy.KubernetesPod_Container_ContainerPort_Protoco
l", KubernetesPod_Container_ContainerPort_Protocol_name, KubernetesPod_Container
_ContainerPort_Protocol_value) | 2703 proto.RegisterEnum("deploy.KubernetesPod_Container_ContainerPort_Protoco
l", KubernetesPod_Container_ContainerPort_Protocol_name, KubernetesPod_Container
_ContainerPort_Protocol_value) |
| 2220 proto.RegisterEnum("deploy.KubernetesPod_Container_Resources_Unit", Kube
rnetesPod_Container_Resources_Unit_name, KubernetesPod_Container_Resources_Unit_
value) | 2704 proto.RegisterEnum("deploy.KubernetesPod_Container_Resources_Unit", Kube
rnetesPod_Container_Resources_Unit_name, KubernetesPod_Container_Resources_Unit_
value) |
| 2221 } | 2705 } |
| 2222 | 2706 |
| 2223 func init() { | 2707 func init() { |
| 2224 proto.RegisterFile("github.com/luci/luci-go/deploytool/api/deploy/compon
ent.proto", fileDescriptor1) | 2708 proto.RegisterFile("github.com/luci/luci-go/deploytool/api/deploy/compon
ent.proto", fileDescriptor1) |
| 2225 } | 2709 } |
| 2226 | 2710 |
| 2227 var fileDescriptor1 = []byte{ | 2711 var fileDescriptor1 = []byte{ |
| 2228 // 2290 bytes of a gzipped FileDescriptorProto | 2712 // 2746 bytes of a gzipped FileDescriptorProto |
| 2229 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x58,
0xcd, 0x72, 0xe3, 0xc6, | 2713 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x58,
0x4b, 0x8f, 0x1b, 0xc7, |
| 2230 0xf1, 0xe7, 0x37, 0x89, 0xe6, 0x87, 0xa8, 0xf1, 0x5a, 0x86, 0x51, 0xff,
0x7f, 0x2c, 0xd3, 0x71, | 2714 0xf1, 0xe7, 0x9b, 0x9c, 0xe2, 0x63, 0x67, 0x5b, 0xd2, 0x8a, 0x1e, 0xf8,
0xff, 0xf7, 0x9a, 0xb6, |
| 2231 0xbc, 0x6b, 0xc7, 0x94, 0x23, 0x57, 0xb6, 0x76, 0x5d, 0xb5, 0x76, 0x91,
0x22, 0x57, 0x54, 0x56, | 2715 0x63, 0xc9, 0xb6, 0xb8, 0xf6, 0x2a, 0x11, 0x24, 0x03, 0xb6, 0x43, 0x2e,
0xa9, 0x25, 0xa3, 0x7d, |
| 2232 0x1f, 0xf4, 0x50, 0xbb, 0xf1, 0x5e, 0x82, 0x02, 0x81, 0x11, 0x89, 0x22,
0x80, 0x81, 0x81, 0x81, | 2716 0xd0, 0x4d, 0xae, 0x63, 0x05, 0x41, 0x06, 0xcd, 0x99, 0x16, 0x39, 0xd8,
0x79, 0x79, 0x1e, 0xca, |
| 2233 0x22, 0xfa, 0x05, 0x72, 0xc8, 0x2d, 0x95, 0x5b, 0x8e, 0x79, 0x88, 0x1c,
0x92, 0xbc, 0x43, 0x72, | 2717 0xd2, 0x5f, 0x20, 0x08, 0x72, 0xcd, 0x2d, 0xc7, 0xdc, 0x72, 0x0c, 0x10,
0x04, 0xc8, 0xe3, 0x0b, |
| 2234 0xce, 0x29, 0xcf, 0x90, 0x73, 0xaa, 0x52, 0xf3, 0x01, 0x90, 0xda, 0x15,
0xc3, 0xdd, 0xaa, 0x5c, | 2718 0xe4, 0x9c, 0x5b, 0x4e, 0xf9, 0x0c, 0xf9, 0x02, 0x41, 0x3f, 0x66, 0x48,
0xae, 0x96, 0xda, 0x15, |
| 2235 0x54, 0xd3, 0x8d, 0xfe, 0xfd, 0x66, 0xd8, 0xdd, 0xd3, 0xdd, 0x23, 0x78,
0x32, 0x73, 0xd9, 0x3c, | 2719 0x90, 0xcb, 0xa0, 0xab, 0xba, 0x7e, 0xbf, 0xee, 0xa9, 0xae, 0xee, 0xaa,
0x6e, 0xf8, 0x62, 0x66, |
| 2236 0x99, 0x76, 0x6d, 0xea, 0x1f, 0x78, 0x89, 0xed, 0x8a, 0x3f, 0x9f, 0xcf,
0xe8, 0x81, 0x43, 0x42, | 2720 0x45, 0xf3, 0x78, 0xda, 0x36, 0x3c, 0x67, 0xcf, 0x8e, 0x0d, 0x8b, 0x7f,
0x1e, 0xcc, 0xbc, 0x3d, |
| 2237 0x8f, 0x2e, 0x19, 0xa5, 0xde, 0x81, 0x15, 0xba, 0x4a, 0x3c, 0xb0, 0xa9,
0x1f, 0xd2, 0x80, 0x04, | 2721 0x93, 0xfa, 0xb6, 0xb7, 0x88, 0x3c, 0xcf, 0xde, 0x23, 0xbe, 0x25, 0xc5,
0x3d, 0xc3, 0x73, 0x7c, |
| 2238 0xac, 0x1b, 0x46, 0x94, 0x51, 0x54, 0x91, 0x7a, 0xe3, 0x47, 0x33, 0x4a,
0x67, 0x1e, 0x39, 0x10, | 2722 0xcf, 0xa5, 0x6e, 0xd4, 0xf6, 0x03, 0x2f, 0xf2, 0x50, 0x49, 0xe8, 0xb5,
0xff, 0x9f, 0x79, 0xde, |
| 2239 0xda, 0x69, 0x72, 0x75, 0xe0, 0x24, 0x91, 0xc5, 0x5c, 0x1a, 0x48, 0xbb,
0xce, 0x1f, 0x8b, 0xa0, | 2723 0xcc, 0xa6, 0x7b, 0x5c, 0x3b, 0x8d, 0x5f, 0xec, 0x99, 0x71, 0x40, 0x22,
0xcb, 0x73, 0x85, 0x5d, |
| 2240 0x1d, 0xa5, 0x58, 0xf4, 0x39, 0x94, 0xa7, 0x89, 0xeb, 0x39, 0x7a, 0x7e,
0xbf, 0x78, 0xbf, 0x7e, | 2724 0xeb, 0xf7, 0x79, 0x50, 0x0e, 0x12, 0x2c, 0x7a, 0x00, 0xc5, 0x69, 0x6c,
0xd9, 0x66, 0x33, 0xbb, |
| 2241 0xf8, 0x5e, 0x57, 0xb2, 0x74, 0x33, 0x8b, 0x6e, 0x9f, 0x7f, 0xc6, 0xd2,
0x0a, 0xfd, 0x3f, 0x80, | 2725 0x9b, 0xbf, 0x57, 0xdd, 0xbf, 0xdb, 0x16, 0x2c, 0xed, 0xd4, 0xa2, 0xdd,
0x65, 0xdd, 0x58, 0x58, |
| 2242 0x58, 0x98, 0xa1, 0xc5, 0xe6, 0x7a, 0x61, 0xbf, 0x78, 0x5f, 0xc3, 0x9a,
0xd0, 0x8c, 0x2d, 0x36, | 2726 0xa1, 0xff, 0x03, 0xe0, 0x0d, 0xdd, 0x27, 0xd1, 0xbc, 0x99, 0xdb, 0xcd,
0xdf, 0x53, 0xb0, 0xc2, |
| 2243 0x47, 0x03, 0x68, 0x5b, 0x61, 0x48, 0x82, 0x99, 0x1b, 0x10, 0xd3, 0xa7,
0x4e, 0xe2, 0x11, 0x1d, | 2727 0x35, 0x23, 0x12, 0xcd, 0x51, 0x0f, 0x54, 0xe2, 0xfb, 0xd4, 0x9d, 0x59,
0x2e, 0xd5, 0x1d, 0xcf, |
| 2244 0xf6, 0xf3, 0xeb, 0xc4, 0xbd, 0x30, 0x1c, 0x8a, 0xef, 0x67, 0xe2, 0xf3,
0x28, 0x87, 0x77, 0x32, | 2728 0x8c, 0x6d, 0xda, 0x84, 0xdd, 0xec, 0x2a, 0x71, 0xc7, 0xf7, 0xfb, 0xbc,
0xff, 0x98, 0x77, 0x0f, |
| 2245 0x88, 0x54, 0xa1, 0x9f, 0x43, 0x75, 0xb6, 0x20, 0x66, 0x48, 0x1d, 0xbd,
0x2e, 0xc0, 0xc6, 0xea, | 2729 0x32, 0x78, 0x2b, 0x85, 0x08, 0x15, 0xfa, 0x11, 0x94, 0x67, 0xe7, 0x54,
0xf7, 0x3d, 0xb3, 0x59, |
| 2246 0x54, 0x01, 0xb3, 0xdc, 0x80, 0x44, 0x92, 0x62, 0x4c, 0x9d, 0x51, 0x0e,
0x57, 0x66, 0x0b, 0xbe, | 2730 0xe5, 0x60, 0x6d, 0x39, 0x2b, 0x37, 0x22, 0x96, 0x4b, 0x03, 0x41, 0x31,
0xf2, 0xcc, 0x41, 0x06, |
| 2247 0x32, 0xfe, 0x9a, 0x87, 0xb2, 0x38, 0x2c, 0x7a, 0x0f, 0xaa, 0x8e, 0x1b,
0x99, 0x0b, 0xb2, 0xd4, | 2731 0x97, 0x66, 0xe7, 0xac, 0xa5, 0xfd, 0x3d, 0x0b, 0x45, 0x3e, 0x59, 0x74,
0x17, 0xca, 0xa6, 0x15, |
| 2248 0xf3, 0xfb, 0xf9, 0xfb, 0x1a, 0xae, 0x38, 0x6e, 0xf4, 0x8c, 0x2c, 0xd1,
0x33, 0x68, 0x86, 0x4b, | 2732 0xe8, 0xe7, 0x74, 0xd1, 0xcc, 0xee, 0x66, 0xef, 0x29, 0xb8, 0x64, 0x5a,
0xc1, 0x33, 0xba, 0x40, |
| 2249 0x36, 0xa7, 0x81, 0x19, 0xdb, 0x91, 0x1b, 0x32, 0xbd, 0x20, 0xf8, 0x7f,
0xbc, 0xe1, 0x57, 0x77, | 2733 0xcf, 0xa0, 0xee, 0x2f, 0xa2, 0xb9, 0xe7, 0xea, 0xa1, 0x11, 0x58, 0x7e,
0xd4, 0xcc, 0x71, 0xfe, |
| 2250 0xc7, 0xc2, 0x78, 0x22, 0x6c, 0x47, 0x39, 0xdc, 0x08, 0xd7, 0x64, 0xa3,
0x07, 0x8d, 0xf5, 0xef, | 2734 0xf7, 0x37, 0xfc, 0x75, 0x7b, 0xc4, 0x8d, 0xc7, 0xdc, 0x76, 0x90, 0xc1,
0x35, 0x7f, 0x45, 0xd6, |
| 2251 0x08, 0x41, 0x49, 0x78, 0x45, 0x6e, 0x29, 0xd6, 0xdc, 0x5f, 0xe4, 0x86,
0x45, 0x96, 0x69, 0x45, | 2735 0x3a, 0x50, 0x5b, 0xed, 0x47, 0x08, 0x0a, 0xdc, 0x2b, 0x62, 0x48, 0xde,
0x66, 0xfe, 0xa2, 0x17, |
| 2252 0xb3, 0x38, 0xf5, 0x97, 0xd0, 0xf4, 0xa2, 0x59, 0xdc, 0xaf, 0x83, 0x46,
0x43, 0x22, 0xc3, 0xc3, | 2736 0x51, 0x40, 0x74, 0x12, 0xcc, 0xc2, 0xc4, 0x5f, 0x5c, 0xd3, 0x09, 0x66,
0x61, 0xb7, 0x0a, 0x8a, |
| 2253 0x85, 0x2c, 0xa6, 0x9d, 0x47, 0xa0, 0xf5, 0x33, 0xb7, 0x6e, 0xfc, 0x3d,
0xe9, 0x96, 0x85, 0xd5, | 2737 0xe7, 0x53, 0xb1, 0x3c, 0x4c, 0x48, 0xd7, 0xb4, 0xf5, 0x18, 0x94, 0x6e,
0xea, 0xd6, 0x8d, 0xff, |
| 2254 0x96, 0x9d, 0xbf, 0x01, 0xec, 0xbc, 0xe2, 0x64, 0xf4, 0x01, 0xd4, 0x65,
0x34, 0xcc, 0xc0, 0xf2, | 2738 0x93, 0x0c, 0x99, 0x5b, 0x0e, 0xd9, 0xfa, 0x4b, 0x16, 0x2a, 0x3d, 0xb9,
0xe4, 0xe8, 0x36, 0x14, |
| 2255 0x89, 0x22, 0x01, 0xa9, 0x3a, 0xb7, 0x7c, 0x82, 0xbe, 0x01, 0x6d, 0x46,
0xd3, 0x88, 0x49, 0xa7, | 2739 0x5f, 0x12, 0x3b, 0xa6, 0x1c, 0x57, 0xc7, 0x42, 0x40, 0xf7, 0xa1, 0x10,
0xbb, 0x96, 0xf8, 0xfb, |
| 2256 0xec, 0x6f, 0x88, 0x58, 0xf7, 0x98, 0x66, 0xa1, 0xab, 0xcd, 0xd4, 0x9a,
0x7b, 0x36, 0x66, 0x16, | 2740 0xc6, 0xfe, 0x9d, 0xe4, 0xef, 0x13, 0x54, 0xfb, 0xcc, 0xb5, 0x22, 0xcc,
0x4d, 0xd0, 0xfb, 0x50, |
| 2257 0x73, 0xed, 0x94, 0xa4, 0x78, 0xdb, 0xb3, 0xaf, 0x92, 0x4c, 0x84, 0x71,
0x46, 0xd4, 0x88, 0xd7, | 2741 0xf0, 0xed, 0x38, 0x6c, 0xe6, 0x79, 0x78, 0xa8, 0x97, 0x4d, 0x31, 0xef,
0x6d, 0x1d, 0x42, 0x81, |
| 2258 0x64, 0xf4, 0x14, 0xc0, 0xb7, 0x02, 0x6b, 0x46, 0x1c, 0xf3, 0xda, 0x57,
0x09, 0xf4, 0xc9, 0x26, | 2742 0x61, 0x90, 0x0a, 0xb5, 0xe3, 0xe1, 0xd1, 0xd1, 0x70, 0xdc, 0x3f, 0x38,
0x3d, 0xe9, 0x8d, 0xd5, |
| 2259 0xa6, 0x33, 0x69, 0xf9, 0xc2, 0x1f, 0x5b, 0x91, 0xe5, 0xc7, 0x58, 0xf3,
0x53, 0x05, 0xfa, 0x1a, | 2743 0x0c, 0xaa, 0x42, 0x39, 0x11, 0xb2, 0x4c, 0x38, 0x1e, 0x9e, 0x9c, 0x4d,
0xfa, 0x63, 0x35, 0x87, |
| 2260 0x6a, 0x73, 0x2b, 0x70, 0x3c, 0x12, 0xc5, 0xfa, 0x3d, 0xc1, 0xd2, 0xd9,
0xc4, 0x32, 0x92, 0x76, | 2744 0x14, 0x28, 0x0e, 0x4e, 0xcf, 0xf0, 0x58, 0xcd, 0xa3, 0x0a, 0x14, 0x7a,
0x9d, 0xe7, 0x63, 0xb5, |
| 2261 0x13, 0xc2, 0x70, 0x86, 0x41, 0x1f, 0x42, 0x43, 0xad, 0x65, 0xbe, 0xbf,
0x2b, 0xe2, 0x57, 0x57, | 2745 0xd0, 0xfa, 0x27, 0x82, 0xad, 0x4b, 0x11, 0x82, 0xde, 0x81, 0xaa, 0x08,
0x25, 0xdd, 0x25, 0x0e, |
| 2262 0x3a, 0x11, 0x9a, 0x47, 0xa0, 0x45, 0x24, 0xa6, 0x49, 0x64, 0x93, 0x58,
0xdf, 0xbb, 0x9d, 0xad, | 2746 0x95, 0x1e, 0x00, 0xa1, 0x3a, 0x21, 0x0e, 0x45, 0x5f, 0x81, 0x32, 0xf3,
0x92, 0x70, 0x13, 0x2b, |
| 2263 0xd9, 0x1e, 0x38, 0xb5, 0xc0, 0x2b, 0x63, 0xf4, 0x11, 0x34, 0x53, 0x41,
0xb2, 0xbf, 0x27, 0xd8, | 2747 0xba, 0xbb, 0x21, 0xdc, 0xda, 0x87, 0x5e, 0x1a, 0x77, 0x95, 0x99, 0x6c,
0xb3, 0xb0, 0x08, 0x23, |
| 2264 0x1b, 0xa9, 0x52, 0xd0, 0xff, 0x04, 0x76, 0xdc, 0xc0, 0x21, 0x37, 0xe6,
0xd2, 0xf2, 0x3d, 0x69, | 2748 0x12, 0x59, 0x46, 0x42, 0x92, 0x5f, 0x0f, 0x8b, 0xcb, 0x24, 0x63, 0x6e,
0x9c, 0x12, 0xd5, 0xc2, |
| 2265 0xa6, 0x8b, 0xe0, 0x35, 0x85, 0xfa, 0xa5, 0xe5, 0x7b, 0xdc, 0xce, 0x38,
0x80, 0x5a, 0x1a, 0x16, | 2749 0x15, 0x19, 0x75, 0xa0, 0x6c, 0xd8, 0x24, 0x0c, 0x2d, 0x43, 0x86, 0xfe,
0x07, 0x9b, 0x68, 0x0e, |
| 2266 0x4e, 0x4c, 0x02, 0x16, 0x2d, 0xcd, 0xd0, 0xb2, 0x17, 0xd6, 0x2c, 0x0d,
0x77, 0x43, 0x28, 0xc7, | 2750 0x84, 0xd9, 0x88, 0x04, 0xc4, 0x09, 0x07, 0x59, 0x9c, 0xe0, 0xd0, 0x00,
0xc0, 0x21, 0x2e, 0x99, |
| 2267 0x52, 0x67, 0xb4, 0xa0, 0xb1, 0x1e, 0x02, 0xe3, 0x01, 0xec, 0xbc, 0xe2,
0x48, 0xb4, 0x07, 0x95, | 2751 0x51, 0x53, 0x7f, 0xe9, 0xc8, 0x3d, 0xf0, 0xe1, 0x26, 0x96, 0x63, 0x61,
0xf9, 0x8d, 0x93, 0xf2, |
| 2268 0xd8, 0xa6, 0x21, 0x89, 0x45, 0x6d, 0xd0, 0xb0, 0x92, 0x8c, 0x3f, 0x94,
0xa1, 0xaa, 0xdc, 0x85, | 2752 0x28, 0x4e, 0xa2, 0x42, 0x5f, 0x42, 0x65, 0x4e, 0x5c, 0xd3, 0xa6, 0x41,
0xd8, 0xbc, 0xcd, 0x79, |
| 2269 0xda, 0x50, 0x4c, 0x22, 0x4f, 0xed, 0xc0, 0x97, 0xa8, 0x07, 0x65, 0x8f,
0xce, 0xdc, 0x40, 0x64, | 2753 0x5a, 0x9b, 0x78, 0x06, 0xc2, 0x6e, 0x4c, 0x23, 0x9c, 0x62, 0xd0, 0xbb,
0x50, 0x93, 0x6d, 0xb1, |
| 2270 0x51, 0xeb, 0xf0, 0xb3, 0x2d, 0x0e, 0xef, 0x9e, 0x72, 0xe3, 0x8b, 0x90,
0xdf, 0x00, 0x2c, 0x91, | 2754 0xe3, 0xef, 0xf0, 0x08, 0xae, 0x4a, 0x1d, 0x0f, 0xce, 0xc7, 0xa0, 0x04,
0x34, 0xf4, 0xe2, 0xc0, |
| 2271 0x68, 0x00, 0x95, 0x98, 0xd8, 0x49, 0x24, 0x93, 0xa8, 0x75, 0xf8, 0xd3,
0x6d, 0x1c, 0x13, 0x61, | 2755 0xa0, 0x61, 0x73, 0x67, 0x7d, 0xbf, 0xa6, 0x63, 0xe0, 0xc4, 0x02, 0x2f,
0x8d, 0xd1, 0x7b, 0x50, |
| 2272 0xad, 0x48, 0x14, 0x16, 0xe9, 0xfc, 0xf8, 0xe2, 0x92, 0x97, 0xf8, 0xe9,
0x78, 0xa1, 0x90, 0x32, | 2756 0x4f, 0x04, 0xc1, 0x7e, 0x97, 0xb3, 0xd7, 0x12, 0x25, 0xa7, 0xff, 0x01,
0x6c, 0x59, 0xae, 0x49, |
| 2273 0x1a, 0x83, 0x4a, 0x37, 0xf3, 0xca, 0xf5, 0x48, 0xac, 0x97, 0x45, 0xd8,
0xb6, 0x9e, 0x54, 0xfa, | 2757 0x2f, 0xf4, 0x05, 0x71, 0x6c, 0x61, 0xd6, 0xe4, 0x11, 0x50, 0xe7, 0xea,
0xe7, 0xc4, 0xb1, 0x99, |
| 2274 0xeb, 0x29, 0x87, 0x8c, 0x72, 0xb8, 0x1e, 0xaf, 0x44, 0xf4, 0x01, 0x80,
0x62, 0x74, 0xdc, 0x48, | 2758 0x9d, 0xb6, 0x07, 0x95, 0x64, 0x6d, 0x19, 0x31, 0x75, 0xa3, 0x60, 0xa1,
0xfb, 0xc4, 0x38, 0x27, |
| 2275 0xaf, 0xa8, 0xfd, 0x34, 0xa9, 0x1b, 0xb8, 0x11, 0x7a, 0x02, 0x6d, 0x65,
0x20, 0xcb, 0x27, 0x37, | 2759 0xb3, 0x24, 0x66, 0x6a, 0x5c, 0x39, 0x12, 0x3a, 0xad, 0x01, 0xb5, 0xd5,
0x75, 0xd4, 0xfe, 0x58, |
| 2276 0xab, 0x8a, 0x6d, 0x77, 0xd3, 0x6d, 0xb3, 0xeb, 0x3e, 0xca, 0xe1, 0x96,
0x34, 0x16, 0xaa, 0x81, | 2760 0x86, 0xfa, 0xda, 0x8a, 0xa0, 0x9f, 0x41, 0xc3, 0x72, 0xc3, 0x88, 0xb8,
0x06, 0xd5, 0xf9, 0xd2, |
| 2277 0x1b, 0x19, 0xbf, 0xcd, 0x43, 0x7d, 0x6d, 0x7b, 0x74, 0x6f, 0xbd, 0xd4,
0x8c, 0x72, 0xaa, 0xd8, | 2761 0x70, 0x9e, 0xc6, 0xfe, 0xc3, 0x1b, 0x2d, 0x68, 0x7b, 0x28, 0xb1, 0x5c,
0xcb, 0xa6, 0xbb, 0x22, |
| 2278 0x3c, 0x48, 0x6b, 0x79, 0x61, 0x33, 0xb3, 0xaa, 0xe3, 0x7b, 0x50, 0x49,
0x42, 0x8f, 0x5a, 0x8e, | 2762 0x22, 0x0a, 0xdb, 0x24, 0x8e, 0x3c, 0x87, 0x47, 0x5d, 0x68, 0x10, 0xdb,
0x72, 0x67, 0x32, 0x5e, |
| 2279 0x70, 0xb1, 0x86, 0x95, 0xc4, 0x2b, 0x4d, 0x12, 0x79, 0xa6, 0x6f, 0x85,
0xd2, 0x6b, 0xb8, 0x92, | 2763 0x1e, 0xdd, 0x8c, 0xbe, 0x93, 0xc0, 0xc7, 0x02, 0x3d, 0xc8, 0x60, 0x95,
0x5c, 0xd2, 0xa1, 0xe7, |
| 2280 0x44, 0xde, 0x99, 0x15, 0xf6, 0x01, 0x6a, 0x53, 0x2b, 0x26, 0xfc, 0xe0,
0x9d, 0xa7, 0x50, 0x5f, | 2764 0x50, 0x9f, 0x92, 0x70, 0x65, 0x08, 0x11, 0x4c, 0xfb, 0x37, 0x1b, 0xa2,
0xcb, 0xa0, 0x4b, 0xfa, |
| 2281 0x8b, 0x1a, 0x42, 0xd0, 0x3a, 0xbd, 0x38, 0x3e, 0x39, 0x37, 0x2f, 0xc6,
0x97, 0x27, 0x17, 0xe7, | 2765 0xda, 0x74, 0x45, 0x46, 0x3f, 0x87, 0x86, 0x43, 0xdc, 0x98, 0xd8, 0x29,
0x77, 0x8d, 0x73, 0xdf, |
| 2282 0xbd, 0xd3, 0x76, 0x6e, 0xa5, 0xc3, 0xc3, 0x6f, 0x9f, 0x9f, 0xe0, 0xe1,
0xa0, 0x9d, 0x47, 0x3b, | 2766 0xd0, 0x3b, 0xc7, 0x1c, 0xbb, 0x24, 0xaf, 0x3b, 0xab, 0x0a, 0xed, 0x0f,
0x39, 0x50, 0x2f, 0xff, |
| 2283 0x50, 0x97, 0xba, 0xde, 0xe0, 0xec, 0xe4, 0xbc, 0x5d, 0xe8, 0x8c, 0xa0,
0xb1, 0x1e, 0x39, 0xb4, | 2767 0x21, 0xfa, 0x04, 0x90, 0x63, 0xb9, 0xba, 0x65, 0xda, 0x54, 0x4f, 0xdc,
0x19, 0xca, 0xa3, 0x4d, |
| 2284 0x0b, 0xcd, 0xc9, 0xf0, 0xe8, 0x39, 0x1e, 0x9a, 0xbd, 0xd3, 0x5f, 0xf6,
0x5e, 0x4e, 0xda, 0x39, | 2768 0x75, 0x2c, 0x77, 0x68, 0xda, 0x34, 0xf1, 0x7a, 0xc8, 0xad, 0xc9, 0xc5,
0x65, 0xeb, 0x9c, 0xb4, |
| 2285 0xf4, 0x0e, 0xec, 0x28, 0x55, 0x46, 0x9e, 0x47, 0x6d, 0x68, 0x28, 0xe5,
0xf9, 0xf0, 0xc5, 0x10, | 2769 0x26, 0x17, 0xeb, 0xd6, 0x3f, 0x86, 0x5b, 0x8c, 0xdb, 0xa7, 0xae, 0x69,
0xb9, 0x33, 0xdd, 0x26, |
| 2286 0xb7, 0x0b, 0x7d, 0x0d, 0xaa, 0x36, 0x0d, 0x18, 0x09, 0x98, 0x71, 0x0c,
0xb0, 0xba, 0xcb, 0xe8, | 2770 0x11, 0x75, 0x8d, 0x85, 0x3c, 0x09, 0x5e, 0x3d, 0xf7, 0xb6, 0x1d, 0xcb,
0x1d, 0x09, 0xdb, 0x23, |
| 2287 0x31, 0x54, 0xd5, 0x6d, 0x55, 0x0d, 0xee, 0x83, 0x2d, 0x51, 0xc6, 0xa9,
0x3d, 0xe7, 0x8c, 0x92, | 2771 0x61, 0xca, 0x19, 0xc8, 0xc5, 0x2b, 0x0c, 0x85, 0x8d, 0x0c, 0xe4, 0xe2,
0x12, 0xc3, 0x23, 0xb8, |
| 2288 0x80, 0xb9, 0x3e, 0xe9, 0xfc, 0xbd, 0x0a, 0xe8, 0xf5, 0xcb, 0x8c, 0x1e,
0x42, 0x59, 0xdc, 0x42, | 2772 0xcb, 0x18, 0x0c, 0xcf, 0x35, 0xe2, 0x20, 0xa0, 0x6e, 0xa4, 0x07, 0xf4,
0xbb, 0x98, 0x86, 0x51, |
| 2289 0x45, 0xbd, 0xbf, 0xf9, 0xde, 0x77, 0x4f, 0xb8, 0x1d, 0x96, 0xe6, 0xc8,
0x80, 0x9a, 0xe3, 0xc6, | 2773 0xd8, 0x2c, 0xf2, 0x69, 0xdf, 0x71, 0xc8, 0xc5, 0x41, 0xda, 0x8b, 0x65,
0xa7, 0x36, 0x87, 0xda, |
| 2290 0xa1, 0xc5, 0xec, 0xb4, 0x85, 0x66, 0x32, 0x3a, 0x02, 0x60, 0x56, 0xbc,
0x30, 0xbf, 0x4f, 0x48, | 2774 0xea, 0x52, 0xa1, 0x87, 0x50, 0xe3, 0x7f, 0x1d, 0x59, 0x0e, 0xf5, 0xe2,
0x88, 0x7b, 0xe8, 0xaa, |
| 2291 0xc2, 0xf3, 0xbf, 0x78, 0x67, 0x11, 0x5d, 0x11, 0x5f, 0x5a, 0xf1, 0xe2,
0x5b, 0x6e, 0x8b, 0x35, | 2775 0x29, 0x54, 0x99, 0xd5, 0x44, 0x18, 0xb1, 0x4d, 0xc3, 0xdd, 0x75, 0xc9,
0x53, 0x35, 0xe6, 0xa9, |
| 2292 0x96, 0x2e, 0xd1, 0x97, 0x50, 0xb2, 0x23, 0x1a, 0xe8, 0xa5, 0x0d, 0x3f,
0x79, 0x05, 0x3f, 0x8a, | 2776 0x44, 0xa7, 0x3d, 0x80, 0xfa, 0xda, 0xc2, 0xa1, 0xb7, 0x41, 0xb9, 0xbc,
0x12, 0x4b, 0x45, 0x6b, |
| 2293 0x68, 0x80, 0x85, 0xb1, 0xf1, 0xfb, 0x02, 0x94, 0xc5, 0x31, 0x79, 0x57,
0x59, 0xb8, 0x81, 0x93, | 2777 0x02, 0xf5, 0xb5, 0x5d, 0x80, 0x1a, 0x00, 0xc3, 0x03, 0xbd, 0xd7, 0x7f,
0xda, 0x39, 0x3b, 0x9a, |
| 2294 0x36, 0x32, 0xbe, 0x46, 0x43, 0xa8, 0x85, 0x11, 0xef, 0x55, 0x6c, 0x29,
0xce, 0x5c, 0x3f, 0x7c, | 2778 0xa8, 0x19, 0x76, 0xf2, 0x0f, 0x0f, 0xf4, 0xcf, 0xd4, 0xac, 0x6c, 0xed,
0xab, 0x39, 0xd9, 0xfa, |
| 2295 0xb0, 0xed, 0xe7, 0x76, 0xc7, 0x0a, 0x80, 0x33, 0x28, 0xff, 0xe9, 0x56,
0x60, 0x93, 0x98, 0xd1, | 2779 0xa1, 0x9a, 0x67, 0xf9, 0x82, 0xb5, 0xf4, 0xcf, 0x0e, 0xd5, 0x82, 0x54,
0x3f, 0x56, 0x8b, 0x5d, |
| 2296 0x48, 0x24, 0x58, 0x0d, 0x67, 0xb2, 0x31, 0x87, 0x5a, 0x8a, 0xe0, 0x47,
0x58, 0xeb, 0x54, 0x62, | 2780 0x05, 0xca, 0x32, 0xe4, 0xb4, 0xfb, 0xb0, 0x75, 0xe9, 0xfc, 0x43, 0x3b,
0x50, 0x0a, 0x0d, 0xcf, |
| 2297 0x8d, 0x46, 0xa0, 0x39, 0x6e, 0x44, 0x6c, 0x9e, 0x2b, 0xaa, 0xba, 0x7c,
0xba, 0xf5, 0x0c, 0x83, | 2781 0xe7, 0xd3, 0x61, 0xc7, 0x89, 0x94, 0xb4, 0xdf, 0x15, 0xa1, 0x2c, 0xcf,
0x38, 0xa4, 0x42, 0x3e, |
| 2298 0x14, 0x81, 0x57, 0xe0, 0xce, 0xa7, 0xa0, 0x65, 0x7a, 0xd4, 0x04, 0xad,
0x37, 0x39, 0x1a, 0x9e, | 2782 0x0e, 0x6c, 0x79, 0x2c, 0xb0, 0x26, 0xea, 0x40, 0xd1, 0xf6, 0x66, 0x96,
0x2b, 0x73, 0xe2, 0xc7, |
| 2299 0x0f, 0x4e, 0xce, 0x8f, 0xdb, 0x39, 0xd4, 0x02, 0x18, 0x0c, 0x33, 0x39,
0x6f, 0xfc, 0xbb, 0x00, | 2783 0xd7, 0x9c, 0x92, 0xed, 0x23, 0x66, 0x7c, 0xea, 0x73, 0x37, 0x0a, 0x24,
0xea, 0x41, 0x29, 0xa4, |
| 2300 0x5a, 0xe6, 0xe4, 0x3b, 0xcf, 0xf5, 0x0d, 0x94, 0xc2, 0x24, 0x9e, 0xab,
0x5b, 0xf7, 0xe0, 0x4d, | 2784 0x46, 0x1c, 0x88, 0xf4, 0xd1, 0xd8, 0xff, 0xe4, 0x3a, 0x8e, 0x31, 0xb7,
0x96, 0x24, 0x12, 0x8b, |
| 2301 0x82, 0xd5, 0x1d, 0x27, 0xf1, 0x5c, 0xdc, 0xdb, 0x24, 0x9e, 0x1b, 0xbf,
0x2b, 0x40, 0x89, 0x2b, | 2785 0x9a, 0x6c, 0xfa, 0xbc, 0x36, 0x61, 0x81, 0xa3, 0xb0, 0xfa, 0x46, 0xc8,
0x68, 0x04, 0x32, 0xd1, |
| 2302 0x38, 0x7b, 0x64, 0xb1, 0x8c, 0x9d, 0xaf, 0x79, 0xeb, 0x9e, 0x26, 0xf6,
0x82, 0x30, 0x33, 0x76, | 2786 0xe8, 0x2f, 0x2c, 0x9b, 0x8a, 0x90, 0xa8, 0x5e, 0x3f, 0x53, 0x71, 0xc8,
0x3d, 0x65, 0x90, 0x41, |
| 2303 0x7f, 0x90, 0xbd, 0xb9, 0x8c, 0x41, 0xaa, 0x26, 0xee, 0x0f, 0x04, 0x1d,
0xc0, 0xbd, 0x88, 0xf0, | 2787 0x06, 0x57, 0xc3, 0xa5, 0x88, 0xde, 0x01, 0x90, 0x8c, 0xa6, 0x15, 0x34,
0x4b, 0x72, 0x3c, 0x45, |
| 2304 0x72, 0x2f, 0xf2, 0xc6, 0x9a, 0x11, 0xd3, 0x73, 0x7d, 0x97, 0xa9, 0x8b,
0xbd, 0x2b, 0xbe, 0xf1, | 2788 0xe8, 0x7a, 0x56, 0x80, 0xbe, 0x00, 0x55, 0x1a, 0x88, 0xaa, 0x8f, 0x99,
0x95, 0xf9, 0xb0, 0xdb, |
| 2305 0x8d, 0x7b, 0x33, 0x72, 0xca, 0x3f, 0xa0, 0xc7, 0xf0, 0xbe, 0x04, 0xf8,
0x6e, 0x60, 0x4e, 0x2d, | 2789 0xc9, 0xb0, 0x69, 0x95, 0x32, 0xc8, 0xe0, 0x86, 0x30, 0xe6, 0xaa, 0x9e,
0x15, 0x68, 0xbf, 0xc9, |
| 2306 0x7b, 0x41, 0xaf, 0xae, 0xcc, 0x98, 0xd8, 0x34, 0x70, 0x62, 0x11, 0x94,
0x32, 0xde, 0x13, 0x06, | 2790 0x42, 0x75, 0x65, 0x78, 0x74, 0x7b, 0xb5, 0x42, 0x1a, 0x64, 0x64, 0x8d,
0x74, 0x3f, 0x29, 0x41, |
| 2307 0x67, 0x6e, 0xd0, 0x97, 0x9f, 0x27, 0xf2, 0xeb, 0x1a, 0xd4, 0xba, 0x79,
0x0d, 0x5a, 0x5e, 0x87, | 2791 0x73, 0x9b, 0x99, 0x65, 0xf9, 0xb9, 0x03, 0xa5, 0xd8, 0xb7, 0x3d, 0x62,
0x72, 0x17, 0x2b, 0x58, |
| 2308 0x5a, 0x37, 0xaf, 0x40, 0xbb, 0xf0, 0xce, 0x0a, 0xea, 0xd0, 0x64, 0xea,
0xb9, 0xc1, 0x2c, 0x16, | 2792 0x4a, 0xac, 0x40, 0x8a, 0x03, 0x5b, 0x77, 0x88, 0x2f, 0xbc, 0x86, 0x4b,
0x71, 0x60, 0x1f, 0x13, |
| 2309 0xb5, 0xb2, 0xac, 0x4e, 0x79, 0x66, 0xdd, 0x0c, 0xd2, 0x0f, 0xfd, 0x0a,
0x94, 0xd8, 0x32, 0x24, | 2793 0xbf, 0x0b, 0x50, 0x99, 0x92, 0x90, 0xb2, 0x89, 0xb7, 0x9e, 0x42, 0x75,
0x65, 0xd5, 0x10, 0x82, |
| 2310 0xc6, 0x0b, 0x28, 0xf1, 0x24, 0xbd, 0xa3, 0xd3, 0xec, 0x43, 0xdd, 0x21,
0xb2, 0xa4, 0xa7, 0x19, | 2794 0xc6, 0xd1, 0xe9, 0xe1, 0xf0, 0x44, 0x3f, 0x1d, 0x4d, 0x86, 0xa7, 0x27,
0x9d, 0x23, 0x35, 0xb3, |
| 2311 0xa1, 0xe1, 0x75, 0x15, 0xcf, 0xb6, 0xd8, 0x9e, 0x93, 0x6c, 0x1e, 0xd1,
0x70, 0x26, 0x77, 0x7e, | 2795 0xd4, 0xe1, 0xfe, 0xd7, 0x67, 0x43, 0xdc, 0xef, 0xa9, 0x59, 0xb4, 0x05,
0x55, 0xa1, 0xeb, 0xf4, |
| 2312 0x05, 0xe8, 0xf5, 0x69, 0x12, 0x7d, 0x01, 0xb5, 0x45, 0x32, 0x95, 0xb3,
0x67, 0x5e, 0xc4, 0xf3, | 2796 0x8e, 0x87, 0x27, 0x6a, 0xae, 0x35, 0x80, 0xda, 0xea, 0xca, 0xa1, 0x6d,
0xa8, 0x8f, 0xfb, 0x07, |
| 2313 0xdd, 0x34, 0x9e, 0xcf, 0x92, 0x29, 0x89, 0x02, 0xc2, 0x48, 0x3c, 0xa6,
0x0e, 0xae, 0x72, 0x33, | 2797 0x67, 0xb8, 0xaf, 0x77, 0x8e, 0x7e, 0xca, 0xca, 0x98, 0x0c, 0xba, 0x05,
0x5b, 0x52, 0x95, 0x92, |
| 2314 0x8e, 0x58, 0x75, 0xc9, 0xc2, 0x7a, 0x97, 0xec, 0xfc, 0xf9, 0x5d, 0x68,
0xde, 0x82, 0xdc, 0x99, | 2798 0x67, 0x59, 0x71, 0x24, 0x95, 0x27, 0xfd, 0x6f, 0xfa, 0x58, 0xcd, 0xb1,
0x40, 0x36, 0x3c, 0x37, |
| 2315 0x3b, 0xbf, 0x80, 0x56, 0x44, 0x62, 0x66, 0x45, 0xcc, 0x0c, 0xa9, 0xe7,
0xda, 0x4b, 0x95, 0xd8, | 2799 0xa2, 0x6e, 0xa4, 0x1d, 0x02, 0x2c, 0x13, 0x30, 0x7a, 0x02, 0x65, 0x99,
0x62, 0x65, 0x5d, 0xfe, |
| 2316 0x1f, 0xdd, 0xb9, 0x6b, 0x17, 0x4b, 0xdb, 0xb1, 0x30, 0xc5, 0xcd, 0x68,
0x5d, 0x44, 0x13, 0xd0, | 2800 0xce, 0x35, 0xab, 0x8c, 0x13, 0x7b, 0xc6, 0x19, 0xc4, 0x2e, 0xdb, 0xf9,
0xdd, 0x0a, 0x94, 0x7c, |
| 2317 0x19, 0x89, 0x7c, 0x37, 0x10, 0xe3, 0xa4, 0x39, 0x8b, 0x2c, 0x3e, 0x59,
0x90, 0xc8, 0xa5, 0x8e, | 2801 0xbe, 0x27, 0x5a, 0xbf, 0xae, 0x00, 0x7a, 0x35, 0x17, 0xa3, 0x47, 0x50,
0xe4, 0x49, 0x54, 0x0e, |
| 2318 0x9a, 0xc6, 0xde, 0xef, 0xca, 0xb7, 0x41, 0x37, 0x7d, 0x1b, 0x74, 0x07,
0xea, 0x6d, 0x80, 0xf7, | 2802 0xb2, 0xbb, 0x39, 0x6d, 0xb7, 0x87, 0xcc, 0x0e, 0x0b, 0x73, 0xa4, 0x41,
0xc5, 0xb4, 0x42, 0x9f, |
| 2319 0xd6, 0xa0, 0xc7, 0x1c, 0x39, 0x16, 0x40, 0xd4, 0x87, 0x1d, 0xcb, 0x66,
0xee, 0x35, 0x31, 0x1d, | 2803 0x44, 0x46, 0x72, 0x07, 0x48, 0x65, 0x74, 0x00, 0x10, 0x91, 0xf0, 0x5c,
0xff, 0x2e, 0xa6, 0x31, |
| 2320 0x62, 0x39, 0x9e, 0x1b, 0x10, 0x91, 0x22, 0xff, 0x95, 0xab, 0x25, 0x11,
0x03, 0x05, 0x40, 0x4f, | 2804 0x95, 0x65, 0xe3, 0xfb, 0xaf, 0x21, 0x9e, 0x90, 0xf0, 0xfc, 0x6b, 0x66,
0x8b, 0x95, 0x28, 0x69, |
| 2321 0xf8, 0x60, 0xab, 0x5c, 0xad, 0xc3, 0xed, 0x9a, 0x74, 0xfb, 0xf7, 0x65,
0x11, 0xc1, 0x2b, 0x04, | 2805 0xa2, 0x87, 0x50, 0x30, 0x02, 0xcf, 0x6d, 0x16, 0x36, 0xfc, 0xfc, 0x12,
0x7e, 0x10, 0xb0, 0x22, |
| 2322 0x7a, 0x0c, 0x15, 0xcf, 0x9a, 0x12, 0x2f, 0xd6, 0xeb, 0x02, 0xfb, 0xe1,
0xdd, 0xd8, 0x53, 0x61, | 2806 0x94, 0x19, 0x6b, 0xbf, 0xcd, 0x41, 0x91, 0x4f, 0x93, 0x95, 0xc5, 0xe7,
0x96, 0x6b, 0x26, 0x95, |
| 2323 0x33, 0xe4, 0x43, 0x0e, 0x56, 0x00, 0xf4, 0x10, 0x34, 0x9e, 0xe4, 0x11,
0xb1, 0x9c, 0xa5, 0xde, | 2807 0x38, 0x6b, 0xa3, 0x3e, 0x54, 0xfc, 0x80, 0x15, 0xdb, 0xd1, 0x82, 0xcf,
0xb9, 0xba, 0x7f, 0xff, |
| 2324 0xd8, 0x76, 0xee, 0x9a, 0xef, 0x06, 0x98, 0x9b, 0x1a, 0xff, 0x6a, 0xf3,
0x37, 0x52, 0x7a, 0x80, | 2808 0xba, 0xdf, 0x6d, 0x8f, 0x24, 0x00, 0xa7, 0x50, 0xf6, 0xeb, 0xfc, 0x68,
0x8b, 0xbc, 0x80, 0x87, |
| 2325 0xbb, 0x02, 0x77, 0x6f, 0x7d, 0xf2, 0x7e, 0xbd, 0x03, 0x17, 0xb7, 0x76,
0xe0, 0x47, 0x32, 0xbf, | 2809 0x5a, 0x05, 0xa7, 0xb2, 0x36, 0x87, 0x4a, 0x82, 0x60, 0x53, 0x58, 0xa9,
0x56, 0x79, 0x1b, 0x0d, |
| 2326 0x85, 0x37, 0x5b, 0xab, 0x12, 0xbf, 0xc1, 0x1f, 0xdd, 0xcb, 0x65, 0x48,
0xb0, 0x40, 0x20, 0x9d, | 2810 0x40, 0x31, 0xad, 0x80, 0x1a, 0x2c, 0x6a, 0xe4, 0x39, 0xf3, 0xd1, 0xb5,
0x73, 0xe8, 0x25, 0x08, |
| 2327 0x37, 0x3b, 0xdf, 0xb7, 0x02, 0x47, 0x38, 0x53, 0xc3, 0xa9, 0xc8, 0x0f,
0x2a, 0xde, 0x19, 0x75, | 2811 0xbc, 0x04, 0xb7, 0x3e, 0x02, 0x25, 0xd5, 0xa3, 0x3a, 0x28, 0x9d, 0xf1,
0x41, 0xff, 0xa4, 0x37, |
| 2328 0xa1, 0x16, 0x6b, 0x5e, 0x3f, 0x7e, 0x4d, 0xa3, 0x85, 0x1b, 0xcc, 0xc4,
0xd0, 0xd1, 0x90, 0xa3, | 2812 0x3c, 0x39, 0x54, 0x33, 0xec, 0x88, 0xed, 0xf5, 0x53, 0x39, 0xab, 0xfd,
0x29, 0x0f, 0x4a, 0xea, |
| 2329 0xbf, 0x52, 0xf1, 0xd1, 0xe4, 0x08, 0xca, 0x21, 0x8d, 0x18, 0xbf, 0x8a,
0xdc, 0xbb, 0x9f, 0x6f, | 2813 0xe4, 0x2b, 0xe7, 0xf5, 0x15, 0x14, 0xfc, 0x38, 0x9c, 0xcb, 0xfd, 0x77,
0xff, 0x26, 0x8b, 0xd5, |
| 2330 0x3b, 0x49, 0xb6, 0x1a, 0xd3, 0x88, 0x61, 0x89, 0x45, 0x5f, 0x41, 0x91,
0x04, 0xd7, 0x7a, 0x53, | 2814 0x1e, 0xc5, 0xe1, 0x9c, 0xef, 0xe0, 0x38, 0x9c, 0x6b, 0xff, 0xc8, 0x41,
0x81, 0x29, 0x18, 0x7b, |
| 2331 0x50, 0xdc, 0xdf, 0x46, 0x31, 0x0c, 0xae, 0x65, 0x9c, 0x38, 0x08, 0xf5,
0xa0, 0x22, 0x2a, 0x56, | 2815 0x40, 0xa2, 0x94, 0x9d, 0xb5, 0x59, 0xf9, 0x3e, 0x8d, 0x8d, 0x73, 0x1a,
0xe9, 0xa1, 0xf5, 0xbd, |
| 2332 0xac, 0xb7, 0x6e, 0x57, 0xd0, 0x4d, 0xf0, 0xd5, 0x38, 0xad, 0x80, 0xe8,
0x98, 0x4f, 0xe1, 0xdf, | 2816 0xa8, 0xcf, 0x8b, 0x18, 0x84, 0x6a, 0x6c, 0x7d, 0x4f, 0xd1, 0x1e, 0xdc,
0x0e, 0x28, 0xab, 0xd6, |
| 2333 0x27, 0x24, 0x66, 0xc4, 0xd1, 0x77, 0xde, 0x96, 0x65, 0x85, 0x45, 0xa7,
0xd0, 0xf2, 0xdc, 0x6b, | 2817 0x78, 0xdc, 0x90, 0x19, 0xd5, 0x6d, 0xcb, 0xb1, 0x22, 0xb9, 0xc5, 0xb7,
0x79, 0x1f, 0x1b, 0xb8, |
| 2334 0x12, 0x90, 0x38, 0x36, 0xc3, 0x88, 0x4e, 0x89, 0xde, 0x16, 0x6c, 0x1f,
0x6f, 0x63, 0x1b, 0x73, | 2818 0x33, 0xa3, 0x47, 0xac, 0x03, 0x3d, 0x81, 0xb7, 0x04, 0x80, 0x25, 0xec,
0x29, 0x31, 0xce, 0xbd, |
| 2335 0x63, 0xdc, 0x4c, 0xc1, 0x42, 0x44, 0xe7, 0xb0, 0xc3, 0x53, 0xcf, 0x5d,
0xa3, 0xdb, 0x7d, 0x1b, | 2819 0x17, 0x2f, 0xf4, 0x90, 0x1a, 0x9e, 0x6b, 0x86, 0x7c, 0x51, 0x8a, 0x78,
0x87, 0x1b, 0x1c, 0x5b, |
| 2336 0xba, 0x56, 0x86, 0x96, 0x7c, 0x4f, 0x01, 0x42, 0x1a, 0x33, 0x53, 0xdc,
0x7a, 0x1d, 0xdd, 0x7e, | 2820 0x6e, 0x57, 0x74, 0x8f, 0x45, 0xef, 0x0a, 0x94, 0x5c, 0xbc, 0x02, 0x2d,
0xae, 0x42, 0xc9, 0xc5, |
| 2337 0x17, 0x6d, 0xa2, 0x4a, 0x07, 0x1b, 0x8d, 0x43, 0x27, 0x1c, 0x89, 0xfa,
0xbc, 0x99, 0x13, 0x33, | 2821 0x25, 0x68, 0x1b, 0x6e, 0x2d, 0xa1, 0xa6, 0x17, 0x4f, 0x59, 0x02, 0x0a,
0xf9, 0xa9, 0x59, 0x94, |
| 2338 0x66, 0x34, 0xd4, 0xdf, 0x79, 0x3b, 0x96, 0x6a, 0x18, 0x91, 0x09, 0xa3,
0xa1, 0xf1, 0x97, 0x3c, | 2822 0xb3, 0x3c, 0x26, 0x17, 0xbd, 0xa4, 0xe3, 0x75, 0xc9, 0xbc, 0xcc, 0x31,
0x57, 0x27, 0xf3, 0x6e, |
| 2339 0x34, 0x6f, 0xa5, 0xc2, 0x9d, 0xd7, 0xe4, 0x63, 0x68, 0x65, 0x17, 0xd9,
0xe4, 0xa9, 0xa2, 0x1a, | 2823 0x09, 0x0a, 0xd1, 0xc2, 0xa7, 0xda, 0x37, 0x50, 0x60, 0xc1, 0x7d, 0x45,
0xae, 0xda, 0x85, 0xaa, |
| 2340 0x58, 0xd3, 0xbe, 0x05, 0xc5, 0x62, 0xba, 0x60, 0xd4, 0xa6, 0x9e, 0xba,
0x10, 0x0f, 0xdf, 0x2a, | 2824 0x49, 0x45, 0x52, 0x48, 0x22, 0x49, 0xc1, 0xab, 0x2a, 0x16, 0xa5, 0xa1,
0x31, 0xa7, 0xe9, 0x5d, |
| 2341 0x0d, 0xb9, 0xbf, 0x04, 0x1a, 0x67, 0x3c, 0x9d, 0xff, 0x13, 0xe3, 0x84,
0x58, 0xa3, 0x2a, 0x14, | 2825 0x46, 0xc1, 0xa9, 0xdc, 0xfa, 0x05, 0xa0, 0x57, 0xaf, 0xd1, 0xe8, 0x53,
0xa8, 0x9c, 0xc7, 0x53, |
| 2342 0x2f, 0x8f, 0xc6, 0xed, 0x1c, 0x5f, 0x3c, 0x1f, 0x8c, 0xdb, 0x79, 0xe3,
0x21, 0xd4, 0xd2, 0x2c, | 2826 0x71, 0xe9, 0x16, 0xe5, 0x42, 0x7a, 0x2d, 0x7c, 0x16, 0x4f, 0x69, 0xe0,
0xd2, 0x88, 0x86, 0x23, |
| 2343 0xe4, 0xad, 0x65, 0xf5, 0xb4, 0xe6, 0x4b, 0x74, 0x0f, 0xca, 0xd7, 0x96,
0x97, 0x10, 0xd5, 0x54, | 2827 0xcf, 0xc4, 0x65, 0x66, 0xc6, 0x10, 0xcb, 0x3c, 0x9b, 0x5b, 0xcd, 0xb3,
0xad, 0xbf, 0xde, 0x81, |
| 2344 0xa4, 0xf0, 0x55, 0xe1, 0x51, 0xde, 0xf8, 0x4d, 0x11, 0xb4, 0xd5, 0x04,
0xd8, 0x86, 0xa2, 0x1d, | 2828 0xfa, 0x1a, 0xe4, 0xca, 0x98, 0xfb, 0x09, 0x34, 0x02, 0x1a, 0x46, 0x24,
0x88, 0x74, 0xdf, 0xb3, |
| 2345 0x26, 0x02, 0x59, 0xc0, 0x7c, 0x89, 0x46, 0x50, 0xf1, 0x89, 0x4f, 0xa3,
0xa5, 0x1a, 0x07, 0xbe, | 2829 0x2d, 0x63, 0x21, 0x37, 0xc4, 0x7b, 0x57, 0x8e, 0xda, 0xc6, 0xc2, 0x76,
0xc4, 0x4d, 0x71, 0x3d, |
| 2346 0x78, 0xe3, 0x34, 0xec, 0x9e, 0x09, 0x1c, 0x56, 0x78, 0xc3, 0x81, 0x8a,
0xd4, 0xa0, 0x3e, 0x94, | 2830 0x58, 0x15, 0xd1, 0x18, 0x9a, 0x11, 0x0d, 0x1c, 0xcb, 0xe5, 0x55, 0x8d,
0x3e, 0x0b, 0x08, 0xbb, |
| 2347 0x92, 0xc0, 0x65, 0x62, 0x9b, 0xd6, 0x61, 0xf7, 0xcd, 0x19, 0x9f, 0x07,
0x2e, 0xc3, 0x02, 0xcb, | 2831 0x50, 0xd0, 0xc0, 0xf2, 0x4c, 0x59, 0xbf, 0xbd, 0xd5, 0x16, 0x8f, 0x22,
0xed, 0xe4, 0x51, 0x64, |
| 2348 0xdb, 0x94, 0xe5, 0xd3, 0x24, 0x48, 0x03, 0xa0, 0xa4, 0xce, 0x9f, 0xf2,
0x50, 0xe2, 0x66, 0xa8, | 2832 0x59, 0x03, 0xed, 0xac, 0x40, 0x0f, 0x19, 0x72, 0xc4, 0x81, 0xa8, 0x0b,
0x5b, 0xc4, 0x88, 0xac, |
| 2349 0x06, 0xa5, 0xfe, 0xcb, 0xcb, 0x61, 0x3b, 0x87, 0x1a, 0x50, 0x7b, 0x76,
0x72, 0x7a, 0x21, 0xa4, | 2833 0x97, 0x54, 0x37, 0x29, 0x31, 0x6d, 0xcb, 0xa5, 0xb2, 0x92, 0x7b, 0x0d,
0x57, 0x43, 0x20, 0x7a, |
| 2350 0x3c, 0x97, 0xce, 0x86, 0xc7, 0x3d, 0x21, 0x15, 0xb8, 0x74, 0x7c, 0xa2,
0xa4, 0x22, 0x97, 0x2e, | 2834 0x12, 0x80, 0xbe, 0x60, 0x37, 0x7a, 0xe9, 0xea, 0x26, 0xac, 0x9f, 0x65,
0xeb, 0xff, 0x97, 0xae, |
| 2351 0x87, 0x58, 0x4a, 0x25, 0x2e, 0x8d, 0x87, 0x97, 0x52, 0x2a, 0xa3, 0x3a,
0x54, 0x87, 0xdf, 0x49, | 2835 0x08, 0x5e, 0x22, 0xd0, 0x13, 0x28, 0xd9, 0x64, 0x4a, 0xed, 0xb0, 0x59,
0xe5, 0xd8, 0x77, 0xaf, |
| 2352 0xa1, 0x22, 0x29, 0xfb, 0x27, 0x42, 0xaa, 0x4a, 0x4a, 0x25, 0xd5, 0x24,
0xa5, 0x92, 0x34, 0x49, | 2836 0xc6, 0x1e, 0x71, 0x9b, 0x3e, 0xbb, 0xdb, 0x60, 0x09, 0x40, 0x8f, 0x40,
0x61, 0x9b, 0x23, 0xa0, |
| 2353 0xa9, 0x24, 0x90, 0x94, 0x4a, 0xaa, 0x73, 0x69, 0xf8, 0x9d, 0x92, 0x1a,
0xc6, 0x3f, 0xf2, 0x50, | 2837 0xc4, 0x5c, 0xc8, 0xba, 0xfc, 0x35, 0xf3, 0xae, 0x38, 0x96, 0x8b, 0x99,
0xa9, 0xf6, 0x1f, 0x15, |
| 2354 0x1d, 0x31, 0x16, 0x1e, 0x93, 0xbb, 0xff, 0xf5, 0xc2, 0x75, 0xab, 0x84,
0x13, 0x6b, 0xae, 0x9b, | 2838 0x94, 0x74, 0x2e, 0x57, 0x2e, 0xdc, 0xed, 0xd5, 0x27, 0x87, 0x57, 0x73,
0x78, 0xfe, 0xda, 0x1c, |
| 2355 0xd3, 0x38, 0x9d, 0x8d, 0xc4, 0x5a, 0x36, 0xf0, 0x39, 0xf1, 0x49, 0xfa,
0xe2, 0x91, 0x12, 0x1a, | 2839 0xfe, 0x58, 0xc4, 0x37, 0xf7, 0x66, 0x63, 0x99, 0x1a, 0x36, 0xf8, 0xa3,
0x3d, 0x59, 0xf8, 0x14, |
| 2356 0x41, 0x75, 0x4e, 0x2c, 0x87, 0x44, 0x7c, 0xb2, 0xe1, 0x65, 0x6d, 0xab,
0xe3, 0xd5, 0x69, 0xba, | 2840 0x73, 0x04, 0x6a, 0xb2, 0x74, 0xe9, 0x38, 0xc4, 0x35, 0xb9, 0x33, 0x15,
0x9c, 0x88, 0x6c, 0xa2, |
| 2357 0x23, 0x01, 0xc3, 0x29, 0xdc, 0x38, 0x84, 0x8a, 0x54, 0x6d, 0xe8, 0x24,
0x77, 0xe4, 0x9a, 0xf1, | 2841 0xfc, 0x81, 0xa5, 0xca, 0xd5, 0xbc, 0xcd, 0xce, 0x9d, 0x5f, 0x7a, 0xc1,
0x39, 0x2b, 0xc5, 0x59, |
| 2358 0xcf, 0x02, 0x94, 0xe5, 0xa5, 0x47, 0x50, 0x22, 0x37, 0xc4, 0x56, 0x8f,
0x70, 0xb1, 0xe6, 0x17, | 2842 0xd9, 0x52, 0x13, 0xcf, 0x06, 0x52, 0xc5, 0x8a, 0x9b, 0x03, 0x28, 0xfa,
0x5e, 0x10, 0xb1, 0x2d, |
| 2359 0x78, 0xce, 0x58, 0x68, 0xce, 0x48, 0xfa, 0x2f, 0xac, 0x4f, 0xde, 0xf0,
0x70, 0xb8, 0x3a, 0x57, | 2843 0xcc, 0xbc, 0xfb, 0xe0, 0xba, 0x99, 0xa4, 0xad, 0x91, 0x17, 0x44, 0x58,
0x60, 0xd1, 0xe7, 0x90, |
| 2360 0x3e, 0xfb, 0x1a, 0x9a, 0x6e, 0xe0, 0x32, 0xd7, 0xf2, 0x4c, 0x87, 0x78,
0xd6, 0x72, 0xfb, 0x8c, | 2844 0xa7, 0xee, 0xcb, 0x66, 0x9d, 0x53, 0xdc, 0xbb, 0x8e, 0xa2, 0xef, 0xbe,
0x14, 0xeb, 0xc4, 0x40, |
| 2361 0xd0, 0x50, 0xf6, 0x03, 0x6e, 0x8e, 0xbe, 0x84, 0x2a, 0x7f, 0x1c, 0xd1,
0x84, 0x6d, 0x9f, 0x08, | 2845 0xa8, 0x03, 0x25, 0x7e, 0xd2, 0x85, 0xcd, 0xc6, 0xfa, 0xc9, 0xbb, 0x09,
0xbe, 0xbc, 0x45, 0x4b, |
| 2362 0x52, 0x4b, 0xf4, 0x33, 0xa8, 0xa8, 0x89, 0xa4, 0xbc, 0x0d, 0xa3, 0x0c,
0xd1, 0x67, 0xb0, 0x1b, | 2846 0x20, 0x3a, 0x64, 0x97, 0x6f, 0x7e, 0x70, 0x50, 0xb3, 0xb9, 0xf5, 0xa6,
0x2c, 0x4b, 0x2c, 0x3a, |
| 2363 0x27, 0xb6, 0xcd, 0x4b, 0x28, 0x9b, 0x47, 0x24, 0x9e, 0x53, 0xcf, 0x51,
0x63, 0x63, 0x5b, 0x7d, | 2847 0x82, 0x86, 0x6d, 0xbd, 0xa4, 0x2e, 0x0d, 0x43, 0xdd, 0x0f, 0xbc, 0x29,
0x6d, 0xaa, 0xeb, 0x8f, |
| 2364 0xb8, 0x4c, 0xf5, 0xdc, 0xf8, 0xca, 0x72, 0xbd, 0x24, 0x22, 0x6b, 0xc6,
0x55, 0x69, 0xac, 0x3e, | 2848 0x17, 0x9b, 0xd8, 0x46, 0xcc, 0x18, 0xd7, 0x13, 0x30, 0x17, 0xd1, 0x09,
0x6c, 0xb1, 0xd0, 0xb3, |
| 2365 0x64, 0xc6, 0x46, 0xb8, 0xfa, 0x3f, 0xc6, 0x87, 0xd0, 0xe0, 0x8e, 0x35,
0xd3, 0xc6, 0x2a, 0x9d, | 2849 0x56, 0xe8, 0xb6, 0xdf, 0x84, 0xae, 0x91, 0xa2, 0x05, 0xdf, 0x53, 0x00,
0xdf, 0x0b, 0x23, 0x9d, |
| 2366 0x5d, 0xe7, 0xba, 0x23, 0xd5, 0x5c, 0xff, 0x07, 0x3e, 0xef, 0xb4, 0xa0,
0xc4, 0x1b, 0x39, 0xaa, | 2850 0xef, 0xfa, 0x26, 0x5a, 0x7f, 0x10, 0xd9, 0x44, 0x95, 0x94, 0x46, 0x0a,
0x83, 0x8e, 0x19, 0x12, |
| 2367 0x40, 0xe1, 0xf8, 0xa2, 0x9d, 0xeb, 0x37, 0x00, 0x1c, 0x6a, 0x2f, 0x48,
0x74, 0xe5, 0x7a, 0xc4, | 2851 0x75, 0x59, 0x11, 0x40, 0xf5, 0x30, 0xf2, 0xfc, 0xe6, 0xad, 0x37, 0x63,
0x29, 0xfb, 0x01, 0x1d, |
| 2368 0x78, 0x0c, 0xf5, 0xb5, 0x21, 0xe6, 0x6d, 0xca, 0x52, 0xe7, 0x1c, 0x9a,
0xb7, 0x66, 0x43, 0xfe, | 2852 0x47, 0x9e, 0xaf, 0xfd, 0x2d, 0x0b, 0xf5, 0xb5, 0x50, 0xb8, 0x72, 0x9b,
0x7c, 0x00, 0x8d, 0x74, |
| 2369 0x00, 0xc7, 0xc3, 0xc9, 0x65, 0x0f, 0x5f, 0xae, 0x1e, 0xd3, 0x7b, 0x80,
0x52, 0xdd, 0xc5, 0xb9, | 2853 0x23, 0xeb, 0x2c, 0x54, 0x64, 0xe2, 0xab, 0x1b, 0x6b, 0x50, 0xcc, 0xab,
0x92, 0xc8, 0x33, 0x3c, |
| 2370 0xf9, 0xb4, 0x77, 0x72, 0xfa, 0x1c, 0xf3, 0x2b, 0xbe, 0x0b, 0xcd, 0x54,
0xaf, 0x1e, 0xd4, 0xd3, | 2854 0x5b, 0x6e, 0x88, 0x47, 0x6f, 0x14, 0x86, 0xcc, 0x5f, 0x1c, 0x8d, 0x53,
0x9e, 0xd6, 0xdb, 0xbc, |
| 2371 0x8a, 0x88, 0xc7, 0x97, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x11,
0x34, 0xfd, 0x94, 0x16, | 2855 0x0c, 0xe1, 0x6d, 0x54, 0x86, 0xfc, 0xe4, 0x60, 0xa4, 0x66, 0x58, 0xe3,
0xac, 0x37, 0x52, 0xb3, |
| 2372 0x00, 0x00, | 2856 0xda, 0x23, 0xa8, 0x24, 0x51, 0xc8, 0x52, 0xcb, 0xf2, 0x4d, 0x91, 0x35,
0x97, 0xef, 0x85, 0x22, |
| 2857 0xa9, 0x08, 0xe1, 0xf3, 0xdc, 0xe3, 0xac, 0xf6, 0xab, 0x3c, 0x28, 0xcb,
0xca, 0x51, 0x85, 0xbc, |
| 2858 0xe1, 0xc7, 0x1c, 0x99, 0xc3, 0xac, 0x89, 0x06, 0x50, 0x72, 0xa8, 0xe3,
0x05, 0x0b, 0x59, 0x46, |
| 2859 0x7c, 0x7a, 0xe3, 0x30, 0x6c, 0x1f, 0x73, 0x1c, 0x96, 0x78, 0xcd, 0x84,
0x92, 0xd0, 0xa0, 0xae, |
| 2860 0x7c, 0xa7, 0x14, 0xcf, 0x2e, 0xed, 0x9b, 0x33, 0xae, 0x3c, 0x60, 0xee,
0x40, 0x89, 0x38, 0x5e, |
| 2861 0xec, 0x26, 0x0b, 0x20, 0xa5, 0xd6, 0x9f, 0xb3, 0xf2, 0xcd, 0xb2, 0x02,
0x85, 0xee, 0xf3, 0x49, |
| 2862 0x5f, 0xcd, 0xa0, 0x1a, 0x54, 0x9e, 0x0d, 0x8f, 0x4e, 0xb9, 0x94, 0x65,
0xd2, 0x71, 0xff, 0xb0, |
| 2863 0xc3, 0xa5, 0x1c, 0x93, 0x0e, 0x87, 0x52, 0xca, 0x33, 0x69, 0xd2, 0xc7,
0x42, 0x2a, 0x30, 0x69, |
| 2864 0xd4, 0x9f, 0x08, 0xa9, 0xc8, 0x2e, 0xad, 0xfd, 0x6f, 0x85, 0x50, 0x12,
0x94, 0xdd, 0x21, 0x97, |
| 2865 0xca, 0x82, 0x52, 0x4a, 0x15, 0x41, 0x29, 0x25, 0x45, 0x50, 0x4a, 0x09,
0x04, 0xa5, 0x94, 0xaa, |
| 2866 0x4c, 0xea, 0x7f, 0x2b, 0xa5, 0x9a, 0xf6, 0xaf, 0x2c, 0x94, 0x07, 0x51,
0xe4, 0x1f, 0xd2, 0xab, |
| 2867 0xdf, 0x9c, 0x99, 0x6e, 0x19, 0x70, 0xbc, 0xcd, 0x74, 0x73, 0x2f, 0x4c,
0x6a, 0x2a, 0xde, 0x16, |
| 2868 0x09, 0x7c, 0x4e, 0x1d, 0x9a, 0xdc, 0x99, 0x84, 0x84, 0x06, 0x50, 0x9e,
0x53, 0x62, 0xd2, 0x80, |
| 2869 0x55, 0x44, 0xec, 0x58, 0xbb, 0xd6, 0xf1, 0x72, 0x36, 0xed, 0x01, 0x87,
0xe1, 0x04, 0xae, 0xed, |
| 2870 0x43, 0x49, 0xa8, 0x36, 0x64, 0x92, 0x2b, 0x62, 0x4d, 0xfb, 0x77, 0x0e,
0x8a, 0x62, 0xd3, 0x23, |
| 2871 0x28, 0xd0, 0x0b, 0x6a, 0xc8, 0x6b, 0x3c, 0x6f, 0xb3, 0x0d, 0x3c, 0x8f,
0x22, 0x5f, 0x9f, 0xd1, |
| 2872 0xe4, 0xed, 0xfe, 0xc3, 0x1b, 0x4e, 0x0e, 0x97, 0xe7, 0xd2, 0x67, 0x5f,
0x42, 0xdd, 0x72, 0xad, |
| 2873 0xc8, 0x22, 0xb6, 0x6e, 0x52, 0x9b, 0x2c, 0xae, 0xaf, 0x11, 0x6a, 0xd2,
0xbe, 0xc7, 0xcc, 0xd1, |
| 2874 0x43, 0x28, 0x27, 0x0f, 0x2b, 0xd7, 0x56, 0x04, 0x89, 0x25, 0xfa, 0x0c,
0x4a, 0xb2, 0x22, 0x29, |
| 2875 0x5e, 0x87, 0x91, 0x86, 0xe8, 0x63, 0xd8, 0x0e, 0x63, 0xc3, 0x60, 0x47,
0x68, 0x34, 0x0f, 0x68, |
| 2876 0x38, 0xf7, 0x6c, 0x53, 0x96, 0x9b, 0xaa, 0xec, 0x98, 0x24, 0x7a, 0x66,
0xfc, 0x82, 0x58, 0x76, |
| 2877 0x1c, 0xd0, 0x15, 0x63, 0x51, 0x67, 0xaa, 0xb2, 0x23, 0x35, 0xd6, 0xfc,
0xe5, 0x4b, 0xc8, 0xbb, |
| 2878 0x50, 0x63, 0x8e, 0xd5, 0x93, 0xc4, 0x2a, 0x9c, 0x5d, 0x65, 0xba, 0x03,
0x99, 0x5c, 0xff, 0x07, |
| 2879 0x3e, 0x6f, 0x35, 0xa0, 0xc0, 0x12, 0x39, 0x2a, 0x41, 0xee, 0xf0, 0x54,
0xcd, 0x74, 0x6b, 0x00, |
| 2880 0xa6, 0x67, 0x9c, 0xd3, 0xe0, 0x85, 0x65, 0x53, 0xed, 0x09, 0x54, 0x57,
0x8a, 0x98, 0x37, 0x39, |
| 2881 0x96, 0x5a, 0x27, 0x50, 0x5f, 0xab, 0x0d, 0xd9, 0x15, 0x1e, 0xf7, 0xc7,
0x93, 0x0e, 0x9e, 0x2c, |
| 2882 0xaf, 0xe3, 0x3b, 0x80, 0x12, 0xdd, 0xe9, 0x89, 0xfe, 0xb4, 0x33, 0x3c,
0x3a, 0xc3, 0x6c, 0x8b, |
| 2883 0x6f, 0x43, 0x3d, 0xd1, 0xcb, 0x2b, 0xf9, 0xb4, 0xc4, 0xd7, 0xe3, 0xe1,
0x7f, 0x03, 0x00, 0x00, |
| 2884 0xff, 0xff, 0xcc, 0xb5, 0x4f, 0xb9, 0x8d, 0x1b, 0x00, 0x00, |
| 2373 } | 2885 } |
| OLD | NEW |