mirror of https://github.com/minio/minio.git
				
				
				
			
		
			
	
	
		
			1678 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			Go
		
	
	
	
		
		
			
		
	
	
			1678 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			Go
		
	
	
	
|  | package cmd | ||
|  | 
 | ||
|  | // Code generated by github.com/tinylib/msgp DO NOT EDIT.
 | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"github.com/tinylib/msgp/msgp" | ||
|  | ) | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateCredentials) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "AccessKey": | ||
|  | 			z.AccessKey, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "AccessKey") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "SecretKey": | ||
|  | 			z.SecretKey, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "SecretKey") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "SessionToken": | ||
|  | 			z.SessionToken, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "SessionToken") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z BatchJobReplicateCredentials) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 3
 | ||
|  | 	// write "AccessKey"
 | ||
|  | 	err = en.Append(0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.AccessKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "AccessKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SecretKey"
 | ||
|  | 	err = en.Append(0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.SecretKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "SecretKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SessionToken"
 | ||
|  | 	err = en.Append(0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.SessionToken) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "SessionToken") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z BatchJobReplicateCredentials) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 3
 | ||
|  | 	// string "AccessKey"
 | ||
|  | 	o = append(o, 0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.AccessKey) | ||
|  | 	// string "SecretKey"
 | ||
|  | 	o = append(o, 0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.SecretKey) | ||
|  | 	// string "SessionToken"
 | ||
|  | 	o = append(o, 0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	o = msgp.AppendString(o, z.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateCredentials) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "AccessKey": | ||
|  | 			z.AccessKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "AccessKey") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "SecretKey": | ||
|  | 			z.SecretKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "SecretKey") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "SessionToken": | ||
|  | 			z.SessionToken, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "SessionToken") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z BatchJobReplicateCredentials) Msgsize() (s int) { | ||
|  | 	s = 1 + 10 + msgp.StringPrefixSize + len(z.AccessKey) + 10 + msgp.StringPrefixSize + len(z.SecretKey) + 13 + msgp.StringPrefixSize + len(z.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateFlags) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Filter": | ||
|  | 			err = z.Filter.DecodeMsg(dc) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Filter") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Notify": | ||
|  | 			err = z.Notify.DecodeMsg(dc) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Notify") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Retry": | ||
|  | 			err = z.Retry.DecodeMsg(dc) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Retry") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z *BatchJobReplicateFlags) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 3
 | ||
|  | 	// write "Filter"
 | ||
|  | 	err = en.Append(0x83, 0xa6, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Filter.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Filter") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Notify"
 | ||
|  | 	err = en.Append(0xa6, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Notify.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Notify") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Retry"
 | ||
|  | 	err = en.Append(0xa5, 0x52, 0x65, 0x74, 0x72, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Retry.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Retry") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z *BatchJobReplicateFlags) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 3
 | ||
|  | 	// string "Filter"
 | ||
|  | 	o = append(o, 0x83, 0xa6, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72) | ||
|  | 	o, err = z.Filter.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Filter") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Notify"
 | ||
|  | 	o = append(o, 0xa6, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79) | ||
|  | 	o, err = z.Notify.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Notify") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Retry"
 | ||
|  | 	o = append(o, 0xa5, 0x52, 0x65, 0x74, 0x72, 0x79) | ||
|  | 	o, err = z.Retry.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Retry") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateFlags) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Filter": | ||
|  | 			bts, err = z.Filter.UnmarshalMsg(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Filter") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Notify": | ||
|  | 			bts, err = z.Notify.UnmarshalMsg(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Notify") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Retry": | ||
|  | 			bts, err = z.Retry.UnmarshalMsg(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Retry") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z *BatchJobReplicateFlags) Msgsize() (s int) { | ||
|  | 	s = 1 + 7 + z.Filter.Msgsize() + 7 + z.Notify.Msgsize() + 6 + z.Retry.Msgsize() | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateResourceType) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	{ | ||
|  | 		var zb0001 string | ||
|  | 		zb0001, err = dc.ReadString() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		(*z) = BatchJobReplicateResourceType(zb0001) | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z BatchJobReplicateResourceType) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	err = en.WriteString(string(z)) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z BatchJobReplicateResourceType) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	o = msgp.AppendString(o, string(z)) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateResourceType) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	{ | ||
|  | 		var zb0001 string | ||
|  | 		zb0001, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		(*z) = BatchJobReplicateResourceType(zb0001) | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z BatchJobReplicateResourceType) Msgsize() (s int) { | ||
|  | 	s = msgp.StringPrefixSize + len(string(z)) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateSource) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Type": | ||
|  | 			{ | ||
|  | 				var zb0002 string | ||
|  | 				zb0002, err = dc.ReadString() | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Type") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				z.Type = BatchJobReplicateResourceType(zb0002) | ||
|  | 			} | ||
|  | 		case "Bucket": | ||
|  | 			z.Bucket, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Bucket") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Prefix": | ||
|  | 			z.Prefix, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Prefix") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Endpoint": | ||
|  | 			z.Endpoint, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Endpoint") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Path": | ||
|  | 			z.Path, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Path") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Creds": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, err = dc.ReadMapHeader() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Creds") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0003 > 0 { | ||
|  | 				zb0003-- | ||
|  | 				field, err = dc.ReadMapKeyPtr() | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Creds") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "AccessKey": | ||
|  | 					z.Creds.AccessKey, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SecretKey": | ||
|  | 					z.Creds.SecretKey, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SessionToken": | ||
|  | 					z.Creds.SessionToken, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					err = dc.Skip() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z *BatchJobReplicateSource) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 6
 | ||
|  | 	// write "Type"
 | ||
|  | 	err = en.Append(0x86, 0xa4, 0x54, 0x79, 0x70, 0x65) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(string(z.Type)) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Type") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Bucket"
 | ||
|  | 	err = en.Append(0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Bucket) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Bucket") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Prefix"
 | ||
|  | 	err = en.Append(0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Prefix) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Prefix") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Endpoint"
 | ||
|  | 	err = en.Append(0xa8, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Endpoint) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Endpoint") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Path"
 | ||
|  | 	err = en.Append(0xa4, 0x50, 0x61, 0x74, 0x68) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Path) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Path") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Creds"
 | ||
|  | 	err = en.Append(0xa5, 0x43, 0x72, 0x65, 0x64, 0x73) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// map header, size 3
 | ||
|  | 	// write "AccessKey"
 | ||
|  | 	err = en.Append(0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.AccessKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SecretKey"
 | ||
|  | 	err = en.Append(0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.SecretKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SessionToken"
 | ||
|  | 	err = en.Append(0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.SessionToken) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z *BatchJobReplicateSource) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 6
 | ||
|  | 	// string "Type"
 | ||
|  | 	o = append(o, 0x86, 0xa4, 0x54, 0x79, 0x70, 0x65) | ||
|  | 	o = msgp.AppendString(o, string(z.Type)) | ||
|  | 	// string "Bucket"
 | ||
|  | 	o = append(o, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74) | ||
|  | 	o = msgp.AppendString(o, z.Bucket) | ||
|  | 	// string "Prefix"
 | ||
|  | 	o = append(o, 0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78) | ||
|  | 	o = msgp.AppendString(o, z.Prefix) | ||
|  | 	// string "Endpoint"
 | ||
|  | 	o = append(o, 0xa8, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74) | ||
|  | 	o = msgp.AppendString(o, z.Endpoint) | ||
|  | 	// string "Path"
 | ||
|  | 	o = append(o, 0xa4, 0x50, 0x61, 0x74, 0x68) | ||
|  | 	o = msgp.AppendString(o, z.Path) | ||
|  | 	// string "Creds"
 | ||
|  | 	o = append(o, 0xa5, 0x43, 0x72, 0x65, 0x64, 0x73) | ||
|  | 	// map header, size 3
 | ||
|  | 	// string "AccessKey"
 | ||
|  | 	o = append(o, 0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.Creds.AccessKey) | ||
|  | 	// string "SecretKey"
 | ||
|  | 	o = append(o, 0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.Creds.SecretKey) | ||
|  | 	// string "SessionToken"
 | ||
|  | 	o = append(o, 0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	o = msgp.AppendString(o, z.Creds.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateSource) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Type": | ||
|  | 			{ | ||
|  | 				var zb0002 string | ||
|  | 				zb0002, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Type") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				z.Type = BatchJobReplicateResourceType(zb0002) | ||
|  | 			} | ||
|  | 		case "Bucket": | ||
|  | 			z.Bucket, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Bucket") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Prefix": | ||
|  | 			z.Prefix, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Prefix") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Endpoint": | ||
|  | 			z.Endpoint, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Endpoint") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Path": | ||
|  | 			z.Path, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Path") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Creds": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Creds") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0003 > 0 { | ||
|  | 				zb0003-- | ||
|  | 				field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Creds") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "AccessKey": | ||
|  | 					z.Creds.AccessKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SecretKey": | ||
|  | 					z.Creds.SecretKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SessionToken": | ||
|  | 					z.Creds.SessionToken, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					bts, err = msgp.Skip(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z *BatchJobReplicateSource) Msgsize() (s int) { | ||
|  | 	s = 1 + 5 + msgp.StringPrefixSize + len(string(z.Type)) + 7 + msgp.StringPrefixSize + len(z.Bucket) + 7 + msgp.StringPrefixSize + len(z.Prefix) + 9 + msgp.StringPrefixSize + len(z.Endpoint) + 5 + msgp.StringPrefixSize + len(z.Path) + 6 + 1 + 10 + msgp.StringPrefixSize + len(z.Creds.AccessKey) + 10 + msgp.StringPrefixSize + len(z.Creds.SecretKey) + 13 + msgp.StringPrefixSize + len(z.Creds.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateTarget) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Type": | ||
|  | 			{ | ||
|  | 				var zb0002 string | ||
|  | 				zb0002, err = dc.ReadString() | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Type") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				z.Type = BatchJobReplicateResourceType(zb0002) | ||
|  | 			} | ||
|  | 		case "Bucket": | ||
|  | 			z.Bucket, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Bucket") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Prefix": | ||
|  | 			z.Prefix, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Prefix") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Endpoint": | ||
|  | 			z.Endpoint, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Endpoint") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Path": | ||
|  | 			z.Path, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Path") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Creds": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, err = dc.ReadMapHeader() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Creds") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0003 > 0 { | ||
|  | 				zb0003-- | ||
|  | 				field, err = dc.ReadMapKeyPtr() | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Creds") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "AccessKey": | ||
|  | 					z.Creds.AccessKey, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SecretKey": | ||
|  | 					z.Creds.SecretKey, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SessionToken": | ||
|  | 					z.Creds.SessionToken, err = dc.ReadString() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					err = dc.Skip() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z *BatchJobReplicateTarget) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 6
 | ||
|  | 	// write "Type"
 | ||
|  | 	err = en.Append(0x86, 0xa4, 0x54, 0x79, 0x70, 0x65) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(string(z.Type)) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Type") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Bucket"
 | ||
|  | 	err = en.Append(0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Bucket) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Bucket") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Prefix"
 | ||
|  | 	err = en.Append(0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Prefix) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Prefix") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Endpoint"
 | ||
|  | 	err = en.Append(0xa8, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Endpoint) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Endpoint") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Path"
 | ||
|  | 	err = en.Append(0xa4, 0x50, 0x61, 0x74, 0x68) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Path) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Path") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Creds"
 | ||
|  | 	err = en.Append(0xa5, 0x43, 0x72, 0x65, 0x64, 0x73) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// map header, size 3
 | ||
|  | 	// write "AccessKey"
 | ||
|  | 	err = en.Append(0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.AccessKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SecretKey"
 | ||
|  | 	err = en.Append(0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.SecretKey) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "SessionToken"
 | ||
|  | 	err = en.Append(0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.Creds.SessionToken) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z *BatchJobReplicateTarget) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 6
 | ||
|  | 	// string "Type"
 | ||
|  | 	o = append(o, 0x86, 0xa4, 0x54, 0x79, 0x70, 0x65) | ||
|  | 	o = msgp.AppendString(o, string(z.Type)) | ||
|  | 	// string "Bucket"
 | ||
|  | 	o = append(o, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74) | ||
|  | 	o = msgp.AppendString(o, z.Bucket) | ||
|  | 	// string "Prefix"
 | ||
|  | 	o = append(o, 0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78) | ||
|  | 	o = msgp.AppendString(o, z.Prefix) | ||
|  | 	// string "Endpoint"
 | ||
|  | 	o = append(o, 0xa8, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74) | ||
|  | 	o = msgp.AppendString(o, z.Endpoint) | ||
|  | 	// string "Path"
 | ||
|  | 	o = append(o, 0xa4, 0x50, 0x61, 0x74, 0x68) | ||
|  | 	o = msgp.AppendString(o, z.Path) | ||
|  | 	// string "Creds"
 | ||
|  | 	o = append(o, 0xa5, 0x43, 0x72, 0x65, 0x64, 0x73) | ||
|  | 	// map header, size 3
 | ||
|  | 	// string "AccessKey"
 | ||
|  | 	o = append(o, 0x83, 0xa9, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.Creds.AccessKey) | ||
|  | 	// string "SecretKey"
 | ||
|  | 	o = append(o, 0xa9, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4b, 0x65, 0x79) | ||
|  | 	o = msgp.AppendString(o, z.Creds.SecretKey) | ||
|  | 	// string "SessionToken"
 | ||
|  | 	o = append(o, 0xac, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e) | ||
|  | 	o = msgp.AppendString(o, z.Creds.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateTarget) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "Type": | ||
|  | 			{ | ||
|  | 				var zb0002 string | ||
|  | 				zb0002, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Type") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				z.Type = BatchJobReplicateResourceType(zb0002) | ||
|  | 			} | ||
|  | 		case "Bucket": | ||
|  | 			z.Bucket, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Bucket") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Prefix": | ||
|  | 			z.Prefix, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Prefix") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Endpoint": | ||
|  | 			z.Endpoint, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Endpoint") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Path": | ||
|  | 			z.Path, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Path") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Creds": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Creds") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0003 > 0 { | ||
|  | 				zb0003-- | ||
|  | 				field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Creds") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "AccessKey": | ||
|  | 					z.Creds.AccessKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "AccessKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SecretKey": | ||
|  | 					z.Creds.SecretKey, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SecretKey") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "SessionToken": | ||
|  | 					z.Creds.SessionToken, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds", "SessionToken") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					bts, err = msgp.Skip(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Creds") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z *BatchJobReplicateTarget) Msgsize() (s int) { | ||
|  | 	s = 1 + 5 + msgp.StringPrefixSize + len(string(z.Type)) + 7 + msgp.StringPrefixSize + len(z.Bucket) + 7 + msgp.StringPrefixSize + len(z.Prefix) + 9 + msgp.StringPrefixSize + len(z.Endpoint) + 5 + msgp.StringPrefixSize + len(z.Path) + 6 + 1 + 10 + msgp.StringPrefixSize + len(z.Creds.AccessKey) + 10 + msgp.StringPrefixSize + len(z.Creds.SecretKey) + 13 + msgp.StringPrefixSize + len(z.Creds.SessionToken) | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchJobReplicateV1) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "APIVersion": | ||
|  | 			z.APIVersion, err = dc.ReadString() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "APIVersion") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Flags": | ||
|  | 			var zb0002 uint32 | ||
|  | 			zb0002, err = dc.ReadMapHeader() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Flags") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0002 > 0 { | ||
|  | 				zb0002-- | ||
|  | 				field, err = dc.ReadMapKeyPtr() | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Flags") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "Filter": | ||
|  | 					err = z.Flags.Filter.DecodeMsg(dc) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Filter") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "Notify": | ||
|  | 					err = z.Flags.Notify.DecodeMsg(dc) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Notify") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "Retry": | ||
|  | 					err = z.Flags.Retry.DecodeMsg(dc) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Retry") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					err = dc.Skip() | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		case "Target": | ||
|  | 			err = z.Target.DecodeMsg(dc) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Target") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Source": | ||
|  | 			err = z.Source.DecodeMsg(dc) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Source") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z *BatchJobReplicateV1) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 4
 | ||
|  | 	// write "APIVersion"
 | ||
|  | 	err = en.Append(0x84, 0xaa, 0x41, 0x50, 0x49, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteString(z.APIVersion) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "APIVersion") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Flags"
 | ||
|  | 	err = en.Append(0xa5, 0x46, 0x6c, 0x61, 0x67, 0x73) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// map header, size 3
 | ||
|  | 	// write "Filter"
 | ||
|  | 	err = en.Append(0x83, 0xa6, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Flags.Filter.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Filter") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Notify"
 | ||
|  | 	err = en.Append(0xa6, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Flags.Notify.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Notify") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Retry"
 | ||
|  | 	err = en.Append(0xa5, 0x52, 0x65, 0x74, 0x72, 0x79) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Flags.Retry.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Retry") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Target"
 | ||
|  | 	err = en.Append(0xa6, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Target.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Target") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Source"
 | ||
|  | 	err = en.Append(0xa6, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = z.Source.EncodeMsg(en) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Source") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z *BatchJobReplicateV1) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 4
 | ||
|  | 	// string "APIVersion"
 | ||
|  | 	o = append(o, 0x84, 0xaa, 0x41, 0x50, 0x49, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e) | ||
|  | 	o = msgp.AppendString(o, z.APIVersion) | ||
|  | 	// string "Flags"
 | ||
|  | 	o = append(o, 0xa5, 0x46, 0x6c, 0x61, 0x67, 0x73) | ||
|  | 	// map header, size 3
 | ||
|  | 	// string "Filter"
 | ||
|  | 	o = append(o, 0x83, 0xa6, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72) | ||
|  | 	o, err = z.Flags.Filter.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Filter") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Notify"
 | ||
|  | 	o = append(o, 0xa6, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79) | ||
|  | 	o, err = z.Flags.Notify.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Notify") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Retry"
 | ||
|  | 	o = append(o, 0xa5, 0x52, 0x65, 0x74, 0x72, 0x79) | ||
|  | 	o, err = z.Flags.Retry.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Flags", "Retry") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Target"
 | ||
|  | 	o = append(o, 0xa6, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74) | ||
|  | 	o, err = z.Target.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Target") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// string "Source"
 | ||
|  | 	o = append(o, 0xa6, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65) | ||
|  | 	o, err = z.Source.MarshalMsg(o) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Source") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchJobReplicateV1) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "APIVersion": | ||
|  | 			z.APIVersion, bts, err = msgp.ReadStringBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "APIVersion") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Flags": | ||
|  | 			var zb0002 uint32 | ||
|  | 			zb0002, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Flags") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			for zb0002 > 0 { | ||
|  | 				zb0002-- | ||
|  | 				field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Flags") | ||
|  | 					return | ||
|  | 				} | ||
|  | 				switch msgp.UnsafeString(field) { | ||
|  | 				case "Filter": | ||
|  | 					bts, err = z.Flags.Filter.UnmarshalMsg(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Filter") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "Notify": | ||
|  | 					bts, err = z.Flags.Notify.UnmarshalMsg(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Notify") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				case "Retry": | ||
|  | 					bts, err = z.Flags.Retry.UnmarshalMsg(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags", "Retry") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				default: | ||
|  | 					bts, err = msgp.Skip(bts) | ||
|  | 					if err != nil { | ||
|  | 						err = msgp.WrapError(err, "Flags") | ||
|  | 						return | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		case "Target": | ||
|  | 			bts, err = z.Target.UnmarshalMsg(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Target") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Source": | ||
|  | 			bts, err = z.Source.UnmarshalMsg(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Source") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z *BatchJobReplicateV1) Msgsize() (s int) { | ||
|  | 	s = 1 + 11 + msgp.StringPrefixSize + len(z.APIVersion) + 6 + 1 + 7 + z.Flags.Filter.Msgsize() + 7 + z.Flags.Notify.Msgsize() + 6 + z.Flags.Retry.Msgsize() + 7 + z.Target.Msgsize() + 7 + z.Source.Msgsize() | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // DecodeMsg implements msgp.Decodable
 | ||
|  | func (z *BatchReplicateFilter) DecodeMsg(dc *msgp.Reader) (err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, err = dc.ReadMapHeader() | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, err = dc.ReadMapKeyPtr() | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "NewerThan": | ||
|  | 			z.NewerThan, err = dc.ReadDuration() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "NewerThan") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "OlderThan": | ||
|  | 			z.OlderThan, err = dc.ReadDuration() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "OlderThan") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "CreatedAfter": | ||
|  | 			z.CreatedAfter, err = dc.ReadTime() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "CreatedAfter") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "CreatedBefore": | ||
|  | 			z.CreatedBefore, err = dc.ReadTime() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "CreatedBefore") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Tags": | ||
|  | 			var zb0002 uint32 | ||
|  | 			zb0002, err = dc.ReadArrayHeader() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Tags") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			if cap(z.Tags) >= int(zb0002) { | ||
|  | 				z.Tags = (z.Tags)[:zb0002] | ||
|  | 			} else { | ||
|  | 				z.Tags = make([]BatchJobKV, zb0002) | ||
|  | 			} | ||
|  | 			for za0001 := range z.Tags { | ||
|  | 				err = z.Tags[za0001].DecodeMsg(dc) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Tags", za0001) | ||
|  | 					return | ||
|  | 				} | ||
|  | 			} | ||
|  | 		case "Metadata": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, err = dc.ReadArrayHeader() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Metadata") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			if cap(z.Metadata) >= int(zb0003) { | ||
|  | 				z.Metadata = (z.Metadata)[:zb0003] | ||
|  | 			} else { | ||
|  | 				z.Metadata = make([]BatchJobKV, zb0003) | ||
|  | 			} | ||
|  | 			for za0002 := range z.Metadata { | ||
|  | 				err = z.Metadata[za0002].DecodeMsg(dc) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Metadata", za0002) | ||
|  | 					return | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			err = dc.Skip() | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // EncodeMsg implements msgp.Encodable
 | ||
|  | func (z *BatchReplicateFilter) EncodeMsg(en *msgp.Writer) (err error) { | ||
|  | 	// map header, size 6
 | ||
|  | 	// write "NewerThan"
 | ||
|  | 	err = en.Append(0x86, 0xa9, 0x4e, 0x65, 0x77, 0x65, 0x72, 0x54, 0x68, 0x61, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteDuration(z.NewerThan) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "NewerThan") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "OlderThan"
 | ||
|  | 	err = en.Append(0xa9, 0x4f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x68, 0x61, 0x6e) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteDuration(z.OlderThan) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "OlderThan") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "CreatedAfter"
 | ||
|  | 	err = en.Append(0xac, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteTime(z.CreatedAfter) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "CreatedAfter") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "CreatedBefore"
 | ||
|  | 	err = en.Append(0xad, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteTime(z.CreatedBefore) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "CreatedBefore") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	// write "Tags"
 | ||
|  | 	err = en.Append(0xa4, 0x54, 0x61, 0x67, 0x73) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteArrayHeader(uint32(len(z.Tags))) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Tags") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for za0001 := range z.Tags { | ||
|  | 		err = z.Tags[za0001].EncodeMsg(en) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err, "Tags", za0001) | ||
|  | 			return | ||
|  | 		} | ||
|  | 	} | ||
|  | 	// write "Metadata"
 | ||
|  | 	err = en.Append(0xa8, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61) | ||
|  | 	if err != nil { | ||
|  | 		return | ||
|  | 	} | ||
|  | 	err = en.WriteArrayHeader(uint32(len(z.Metadata))) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err, "Metadata") | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for za0002 := range z.Metadata { | ||
|  | 		err = z.Metadata[za0002].EncodeMsg(en) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err, "Metadata", za0002) | ||
|  | 			return | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // MarshalMsg implements msgp.Marshaler
 | ||
|  | func (z *BatchReplicateFilter) MarshalMsg(b []byte) (o []byte, err error) { | ||
|  | 	o = msgp.Require(b, z.Msgsize()) | ||
|  | 	// map header, size 6
 | ||
|  | 	// string "NewerThan"
 | ||
|  | 	o = append(o, 0x86, 0xa9, 0x4e, 0x65, 0x77, 0x65, 0x72, 0x54, 0x68, 0x61, 0x6e) | ||
|  | 	o = msgp.AppendDuration(o, z.NewerThan) | ||
|  | 	// string "OlderThan"
 | ||
|  | 	o = append(o, 0xa9, 0x4f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x68, 0x61, 0x6e) | ||
|  | 	o = msgp.AppendDuration(o, z.OlderThan) | ||
|  | 	// string "CreatedAfter"
 | ||
|  | 	o = append(o, 0xac, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72) | ||
|  | 	o = msgp.AppendTime(o, z.CreatedAfter) | ||
|  | 	// string "CreatedBefore"
 | ||
|  | 	o = append(o, 0xad, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65) | ||
|  | 	o = msgp.AppendTime(o, z.CreatedBefore) | ||
|  | 	// string "Tags"
 | ||
|  | 	o = append(o, 0xa4, 0x54, 0x61, 0x67, 0x73) | ||
|  | 	o = msgp.AppendArrayHeader(o, uint32(len(z.Tags))) | ||
|  | 	for za0001 := range z.Tags { | ||
|  | 		o, err = z.Tags[za0001].MarshalMsg(o) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err, "Tags", za0001) | ||
|  | 			return | ||
|  | 		} | ||
|  | 	} | ||
|  | 	// string "Metadata"
 | ||
|  | 	o = append(o, 0xa8, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61) | ||
|  | 	o = msgp.AppendArrayHeader(o, uint32(len(z.Metadata))) | ||
|  | 	for za0002 := range z.Metadata { | ||
|  | 		o, err = z.Metadata[za0002].MarshalMsg(o) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err, "Metadata", za0002) | ||
|  | 			return | ||
|  | 		} | ||
|  | 	} | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // UnmarshalMsg implements msgp.Unmarshaler
 | ||
|  | func (z *BatchReplicateFilter) UnmarshalMsg(bts []byte) (o []byte, err error) { | ||
|  | 	var field []byte | ||
|  | 	_ = field | ||
|  | 	var zb0001 uint32 | ||
|  | 	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts) | ||
|  | 	if err != nil { | ||
|  | 		err = msgp.WrapError(err) | ||
|  | 		return | ||
|  | 	} | ||
|  | 	for zb0001 > 0 { | ||
|  | 		zb0001-- | ||
|  | 		field, bts, err = msgp.ReadMapKeyZC(bts) | ||
|  | 		if err != nil { | ||
|  | 			err = msgp.WrapError(err) | ||
|  | 			return | ||
|  | 		} | ||
|  | 		switch msgp.UnsafeString(field) { | ||
|  | 		case "NewerThan": | ||
|  | 			z.NewerThan, bts, err = msgp.ReadDurationBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "NewerThan") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "OlderThan": | ||
|  | 			z.OlderThan, bts, err = msgp.ReadDurationBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "OlderThan") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "CreatedAfter": | ||
|  | 			z.CreatedAfter, bts, err = msgp.ReadTimeBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "CreatedAfter") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "CreatedBefore": | ||
|  | 			z.CreatedBefore, bts, err = msgp.ReadTimeBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "CreatedBefore") | ||
|  | 				return | ||
|  | 			} | ||
|  | 		case "Tags": | ||
|  | 			var zb0002 uint32 | ||
|  | 			zb0002, bts, err = msgp.ReadArrayHeaderBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Tags") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			if cap(z.Tags) >= int(zb0002) { | ||
|  | 				z.Tags = (z.Tags)[:zb0002] | ||
|  | 			} else { | ||
|  | 				z.Tags = make([]BatchJobKV, zb0002) | ||
|  | 			} | ||
|  | 			for za0001 := range z.Tags { | ||
|  | 				bts, err = z.Tags[za0001].UnmarshalMsg(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Tags", za0001) | ||
|  | 					return | ||
|  | 				} | ||
|  | 			} | ||
|  | 		case "Metadata": | ||
|  | 			var zb0003 uint32 | ||
|  | 			zb0003, bts, err = msgp.ReadArrayHeaderBytes(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err, "Metadata") | ||
|  | 				return | ||
|  | 			} | ||
|  | 			if cap(z.Metadata) >= int(zb0003) { | ||
|  | 				z.Metadata = (z.Metadata)[:zb0003] | ||
|  | 			} else { | ||
|  | 				z.Metadata = make([]BatchJobKV, zb0003) | ||
|  | 			} | ||
|  | 			for za0002 := range z.Metadata { | ||
|  | 				bts, err = z.Metadata[za0002].UnmarshalMsg(bts) | ||
|  | 				if err != nil { | ||
|  | 					err = msgp.WrapError(err, "Metadata", za0002) | ||
|  | 					return | ||
|  | 				} | ||
|  | 			} | ||
|  | 		default: | ||
|  | 			bts, err = msgp.Skip(bts) | ||
|  | 			if err != nil { | ||
|  | 				err = msgp.WrapError(err) | ||
|  | 				return | ||
|  | 			} | ||
|  | 		} | ||
|  | 	} | ||
|  | 	o = bts | ||
|  | 	return | ||
|  | } | ||
|  | 
 | ||
|  | // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
 | ||
|  | func (z *BatchReplicateFilter) Msgsize() (s int) { | ||
|  | 	s = 1 + 10 + msgp.DurationSize + 10 + msgp.DurationSize + 13 + msgp.TimeSize + 14 + msgp.TimeSize + 5 + msgp.ArrayHeaderSize | ||
|  | 	for za0001 := range z.Tags { | ||
|  | 		s += z.Tags[za0001].Msgsize() | ||
|  | 	} | ||
|  | 	s += 9 + msgp.ArrayHeaderSize | ||
|  | 	for za0002 := range z.Metadata { | ||
|  | 		s += z.Metadata[za0002].Msgsize() | ||
|  | 	} | ||
|  | 	return | ||
|  | } |