(ctx context.Context, name string)
| 91 | } |
| 92 | |
| 93 | func (pm *proxyMounts) Info(ctx context.Context, name string) (mount.ActivationInfo, error) { |
| 94 | a, err := pm.client.Info(ctx, &mounts.InfoRequest{ |
| 95 | Name: name, |
| 96 | }) |
| 97 | if err != nil { |
| 98 | return mount.ActivationInfo{}, errgrpc.ToNative(err) |
| 99 | } |
| 100 | return ActivationInfoFromProto(a.Info), nil |
| 101 | } |
| 102 | |
| 103 | func (pm *proxyMounts) Update(ctx context.Context, info mount.ActivationInfo, fieldpaths ...string) (mount.ActivationInfo, error) { |
| 104 | var updateMask *ptypes.FieldMask |
nothing calls this directly
no test coverage detected