2264
2265
// UpdateNamespace mocks base method.
2266
>
func (m *MockWorkflowServiceClient) UpdateNamespace(ctx context.Context, in *workflowservice.UpdateNamespaceRequest, opts ...grpc.CallOption) (*workflowservice.UpdateNamespaceResponse, error) {
service_grpc.pb.mock.go
2267
>
m.ctrl.T.Helper()
2268
>
varargs := []any{ctx, in}
2269
>
for _, a := range opts {
2270
varargs = append(varargs, a)
2271
}
2273
>
ret0, _ := ret[0].(*workflowservice.UpdateNamespaceResponse)
2274
>
ret1, _ := ret[1].(error)
2275
>
return ret0, ret1
2276
}
2277
2278
// UpdateNamespace indicates an expected call of UpdateNamespace.
2279
>
func (mr *MockWorkflowServiceClientMockRecorder) UpdateNamespace(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
2280
>
mr.mock.ctrl.T.Helper()
2281
>
varargs := append([]any{ctx, in}, opts...)
2282
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateNamespace", reflect.TypeOf((*MockWorkflowServiceClient)(nil).UpdateNamespace), varargs...)
2283
>
}
2284
2285
// UpdateSchedule mocks base method.